Skip to main content
GET
/
v1
/
return_reasons
List Return Reasons
curl --request GET \
  --url https://{defaultHost}/v1/return_reasons \
  --header 'Authorization: Bearer <token>'
{
  "object": "list",
  "data": [
    {
      "id": "color",
      "description": "Color"
    },
    {
      "id": "defective",
      "description": "Damaged or defective"
    },
    {
      "id": "not_as_described",
      "description": "Item not as described"
    },
    {
      "id": "size_too_large",
      "description": "Size was too large"
    },
    {
      "id": "size_too_small",
      "description": "Size was too small"
    },
    {
      "id": "style",
      "description": "Style"
    },
    {
      "id": "unknown",
      "description": "Unknown"
    },
    {
      "id": "unwanted",
      "description": "Customer changed their mind"
    },
    {
      "id": "wrong_item",
      "description": "Received the wrong item"
    },
    {
      "id": "other",
      "description": "Other"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Success

object
string

A string describing the object type returned.

pagination
object
data
array

An array of objects.