Types > ReturnCreate
Description
Topic: Returns
Fields
Whether to refund to customer balance
Example: false
line_items: [ReturnLineItemCreate!]!
A unique order identifier
Example: "or_EQzGqWoY"
Valid when: order_id matches regexp pattern: ^or_
Unique return policy identifier. See also: Unique Identifiers
Example: "rp_EQzGqWoY"
Valid when: return_policy_id matches regexp pattern: ^rp_
Index of the shipping option within return policy
Example: 0
Return tags (can be used for organization)
Used By
Mutations
Preview (typescript)
interface ReturnCreate {customer_balance?: booleanline_items: ReturnLineItemCreate[]order_id: stringreturn_policy_id: stringshipping_option_index: numbertags?: string[]}