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": "96f789f6-df14-4b98-8fd4-d9f6192d6715",
      "object": "refund_item",
      "quantity": 1,
      "restock": false,
      "revoke_purchase": false,
      "line_item": "9ddf69f4-c2e7-457f-bc0f-b0d01d66d323",
      "refund": "553e0a28-8362-425d-83f0-837463a3549d",
      "created_at": 1773903584,
      "updated_at": 1773903584
    }
  ]
}

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.