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": "741c9d4f-8069-4d70-8df2-eba747461026",
      "object": "return_item",
      "note": null,
      "return_reason": "wrong_item",
      "return_reason_description": "Received the wrong item",
      "quantity": 1,
      "return_request": "75716d4d-3406-4476-b5bd-ef6f8731cb02",
      "line_item": "1ac3fe1b-12eb-4d08-90c3-5b160afb647a",
      "created_at": 1769674994,
      "updated_at": 1769674994
    }
  ]
}

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.