input CreateReturnLineItemInput

Fields

FieldTypeDescription
skuString!

The sku of one of the order's line items that is been returned.

quantityInt!

Quantity as a whole-unit count.

return_reasonString!

Return reason for this return line item.

conditionString

Condition for this return line item.

is_componentBoolean

Whether this return line item is component.

exchange_items[CreateReturnItemExchangeInput]

List of exchange items associated with this return line item.

Referenced By

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}]]
}