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! | Public API tote ID that identifies the related record. |
packages | [ShippedPackagesInput]! | List of packages associated with this fulfill order. |
notify_customer_via_shiphero | Boolean | Whether Shiphero should notify the customer when fulfilling this order. |
notify_customer_via_store | Boolean | Whether the connected store should notify the customer when fulfilling this order. |
shipped_off_shiphero | Boolean | Whether this fulfillment was shipped outside Shiphero. |
note | String | Human-readable note for this fulfill order. |
Referenced By
- order_fulfill Mutation
Example
{
"customer_account_id": "QWNjb3VudDoxMjM0",
"order_id": "T3JkZXI6MTIzNA==",
"tote_id": "VG90ZToxMjM0",
"packages": [[{id: "T3JkZXI6MTIzNA==", order_number: "SO-100045"}]],
"notify_customer_via_shiphero": true,
"notify_customer_via_store": true,
"shipped_off_shiphero": true,
"note": "Customer requested expedited handling."
}