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": "c3d92a3f-1634-4176-adae-b5f7673f593b",
      "object": "refund_item",
      "quantity": 1,
      "restock": false,
      "revoke_purchase": false,
      "line_item": "a3926c26-9710-4381-ab4d-041f449199e4",
      "refund": "4fab3d31-bc46-4d6c-bb9b-84aaf0cec979",
      "created_at": 1782485884,
      "updated_at": 1782485884
    }
  ]
}

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.