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": "0f4386f6-d3e0-4503-a8df-0b6e93b4f7f4",
      "object": "refund_item",
      "quantity": 1,
      "restock": false,
      "revoke_purchase": false,
      "line_item": "afba3a1b-7a0b-4bd2-8ab4-39669a4cf86d",
      "refund": "89fe95a7-7742-4899-9133-0813ab7adfe3",
      "created_at": 1767909754,
      "updated_at": 1767909754
    }
  ]
}

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.