Anchor to ReturnLineItemTypeReturn
Return Line Item Type
interface
Requires access scope.
A return line item of any type.
Anchor to FieldsFields
- Anchor to customerNotecustomer•
Note A note from the customer that describes the item to be returned. Maximum length: 300 characters.
- •ID!non-null
A globally-unique ID.
- Anchor to quantityquantity•Int!non-null
The quantity being returned.
- Anchor to refundableQuantityrefundable•
Quantity Int!non-null The quantity that can be refunded.
- Anchor to refundedQuantityrefunded•
Quantity Int!non-null The quantity that was refunded.
- Anchor to returnReasonreturn•
Reason ReturnReason!non-null The reason for returning the item.
- Anchor to returnReasonNotereturn•
Reason Note String!non-null Additional information about the reason for the return. Maximum length: 255 characters.
Was this section helpful?
{
"customerNote": "",
"id": "",
"quantity": "",
"refundableQuantity": "",
"refundedQuantity": "",
"returnReason": "",
"returnReasonNote": ""
}
{
"customerNote": "",
"id": "",
"quantity": "",
"refundableQuantity": "",
"refundedQuantity": "",
"returnReason": "",
"returnReasonNote": ""
}
interface ReturnLineItemType {
customerNote: String
id: ID!
quantity: Int!
refundableQuantity: Int!
refundedQuantity: Int!
returnReason: ReturnReason!
returnReasonNote: String!
}