input UpdateOrderFulfillmentStatusInput
Fields
| Field | Type | Description |
|---|---|---|
customer_account_id | String | Use this when you are a 3PL acting on behalf of one of your customers. |
order_id | String! | The id of the order you want to modify. |
fulfillment_status | String! | Current fulfillment status; use the API status values returned by this field when filtering or updating. |
remove_inventory | Boolean | Whether or not to remove inventory if the order is being cancelled. |
reason | String | Human-readable reason for this order fulfillment status. |
void_on_platform | Boolean | Whether or not to void the order on the sales platform if the order is being cancelled. |
Referenced By
- order_update_fulfillment_status Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"order_id": "T3JkZXI6MTIzNA==",
"fulfillment_status": "pending",
"remove_inventory": true,
"reason": "pending",
"void_on_platform": true
}