input FulfillOrderInput
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 |
tote_id | String! | |
packages | [ShippedPackagesInput]! | |
notify_customer_via_shiphero | Boolean | |
notify_customer_via_store | Boolean | |
shipped_off_shiphero | Boolean | |
note | String |
Referenced By
- order_fulfill Mutation
Example
{
"customer_account_id": "abc123",
"order_id": "abc123",
"tote_id": "abc123",
"packages": ShippedPackagesInput,
"notify_customer_via_shiphero": true,
"notify_customer_via_store": true,
"shipped_off_shiphero": true,
"note": "abc123"
}