Skip to main content
GET
/
v1
/
refund_items
List
curl --request GET \
  --url https://{defaultHost}/v1/refund_items \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/refund_items"
  },
  "data": [
    {
      "id": "d4373eec-da12-47d9-a2b0-22325039ae4a",
      "object": "refund_item",
      "quantity": 1,
      "restock": false,
      "revoke_purchase": false,
      "line_item": "29076a51-92b3-4eec-bc00-3fcc6132f8f4",
      "refund": "f6719dd2-a849-415c-83c5-028e13d058f5",
      "created_at": 1772113028,
      "updated_at": 1772113028
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

ids[]
string[]

Only return objects with the given IDs.

limit
integer

A limit on the number of items to be returned, between 1 and 100.

page
integer

The page of items you want returned.

refund_ids[]
string[]

Only return objects that belong to the given refunds.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.