input CreateShippingContainerInput
Fields
| Field | Type | Description |
|---|---|---|
carrier | String! | Carrier name or carrier code. |
warehouse_id | String | Optional public API warehouse ID. Defaults to the user's assigned warehouse. |
methods | [String] | Carrier shipping methods for this container. |
quantity | Int | Number of containers to create for this carrier and method set. Defaults to 1. Maximum total quantity is 100. |
Referenced By
- shipping_container_create Mutation
Example
{
"carrier": "ups",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"methods": ["ups_ground"],
"quantity": 2
}