cURL
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" } ] }
Returns a list of possible return reasons.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Success
A string describing the object type returned.
Show child attributes
An array of objects.
Was this page helpful?