Skip to main content
GET
/
v1
/
refund_items
/
{id}
Retrieve
curl --request GET \
  --url https://{defaultHost}/v1/refund_items/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "1d9ac0b2-b963-411c-a381-1ccc7fc2a557",
  "object": "refund_item",
  "quantity": 1,
  "restock": false,
  "revoke_purchase": false,
  "line_item": "cfabe087-650c-47dc-9f38-fa92bbcf0ac2",
  "refund": "1111c630-a5dc-4438-921b-2b2bfefeb8e0",
  "created_at": 1767909755,
  "updated_at": 1767909755
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Response

200 - application/json

Success

id
string | null

The UUID of the specific object.

object
string

A string describing the object type returned.

restock
boolean

Whether or not the associated line item should be restocked.

revoke_purchase
boolean

Whether or not the associated purchase should be revoked.

quantity
integer

The quantity of products being returned. This must be less than or equal to the fulfilled quantity of the associated line item.

line_item

Expandable – The associated line item ID.

refund

Expandable – The associated refund ID.

created_at
integer | null

Time at which the object was created. Measured in seconds since the Unix epoch.

updated_at
integer | null

Time at which the object was last updated. Measured in seconds since the Unix epoch.