object Return
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
account_id | String | |
order_id | String | |
partner_id | String | |
reason | String | |
status | String | |
label_type | ReturnLabelType | |
label_cost | String | |
labels | [RMALabelType] | |
cost_to_customer | String | |
shipping_carrier | String | |
shipping_method | String | |
dimensions | Dimensions | |
address | Address | |
line_items | [ReturnLineItem] | |
total_items_expected | Int | |
total_items_received | Int | |
total_items_restocked | Int | |
created_at | ISODateTime | |
display_issue_refund | Boolean | |
order | Order | |
exchanges | [ReturnExchange] | |
return_history | [ReturnHistory] |
Referenced By
- CreateReturnOutput Type
- MergeableOrder Type
- Order Type
- ReceiveReturnLineItemOutput Type
- ReturnEdge Type
- ReturnExchange Type
- ReturnQueryResult Type
- UpdateReturnStatusOutput Type
Example
{
"id": "abc123",
"legacy_id": 987,
"account_id": "abc123",
"order_id": "abc123",
"partner_id": "abc123",
"reason": "abc123",
"status": "abc123",
"label_type": "FREE",
"label_cost": "abc123",
"labels": RMALabelType,
"cost_to_customer": "abc123",
"shipping_carrier": "abc123",
"shipping_method": "abc123",
"dimensions": Dimensions,
"address": Address,
"line_items": ReturnLineItem,
"total_items_expected": 987,
"total_items_received": 987,
"total_items_restocked": 987,
"created_at": "abc123",
"display_issue_refund": true,
"order": Order,
"exchanges": ReturnExchange,
"return_history": ReturnHistory
}