input CreateShipmentInput
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! | |
warehouse_id | String! | |
address | AddressInput! | |
line_items | [CreateShipmentLineItemInput]! | |
labels | [CreateShipmentShippingLabelInput] | |
notify_customer_via_shiphero | Boolean | |
notify_customer_via_store | Boolean | |
shipped_off_shiphero | Boolean | |
profile | String |
Referenced By
- shipment_create Mutation
Example
{
"customer_account_id": "abc123",
"order_id": "abc123",
"warehouse_id": "abc123",
"address": AddressInput,
"line_items": CreateShipmentLineItemInput,
"labels": CreateShipmentShippingLabelInput,
"notify_customer_via_shiphero": true,
"notify_customer_via_store": true,
"shipped_off_shiphero": true,
"profile": "abc123"
}