Skip to main content
GET
/
v1
/
return_items
List
curl --request GET \
  --url https://{defaultHost}/v1/return_items \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "pagination": {
    "count": 1,
    "limit": 20,
    "page": 1,
    "url": "/v1/return_items"
  },
  "data": [
    {
      "id": "bff78f87-b210-498c-b8ad-1b6c3faba7f1",
      "object": "return_item",
      "note": null,
      "return_reason": "wrong_item",
      "return_reason_description": "Received the wrong item",
      "quantity": 1,
      "return_request": "bcad27ca-ab98-4572-a577-9dba5b42ca99",
      "line_item": "7b8040c4-2604-486e-8f36-6e12c8673d2c",
      "created_at": 1771429902,
      "updated_at": 1771429902
    }
  ]
}

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.

return_request_ids[]
string[]

Only return objects that belong to the given return requests.

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.