input CreateReturnLineItemInput
Fields
| Field | Type | Description |
|---|---|---|
sku | String! | The sku of one of the order's line items that is been returned. |
quantity | Int! | Quantity as a whole-unit count. |
return_reason | String! | Return reason for this return line item. |
condition | String | Condition for this return line item. |
is_component | Boolean | Whether this return line item is component. |
exchange_items | [CreateReturnItemExchangeInput] | List of exchange items associated with this return line item. |
Referenced By
- CreateReturnInput Type
Example
{
"sku": "BLUE-TEE-M",
"quantity": 2,
"return_reason": "Customer requested expedited handling.",
"condition": "new",
"is_component": true,
"exchange_items": [[{sku: "BLUE-TEE-M", quantity: 2}]]
}