object ShippingContainer
Fields
| Field | Type | Description | ||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
id | String | Public API ID for this identifiable. | ||||||||||||||||||||||||||||||
legacy_id | BigInt | Numeric legacy ID for this identifiable; use only where legacy IDs are required. | ||||||||||||||||||||||||||||||
account_id | String | Public API account ID that identifies the related record. | ||||||||||||||||||||||||||||||
warehouse_id | String | Public API warehouse ID. Use this when passing or filtering by a warehouse; warehouse fields are display values or nested objects. | ||||||||||||||||||||||||||||||
container_id | String | Public API container ID that identifies the related record. | ||||||||||||||||||||||||||||||
carrier | String | Carrier name or carrier code used for shipping. | ||||||||||||||||||||||||||||||
shipping_methods | [String] | List of shipping methods for this shipping container. | ||||||||||||||||||||||||||||||
shipping_labels | ShippingLabelConnection | Shipping labels for this shipping container. | ||||||||||||||||||||||||||||||
| ||||||||||||||||||||||||||||||||
note | String | Human-readable note for this shipping container. | ||||||||||||||||||||||||||||||
needs_manifest | Boolean | True when this shipping container needs manifest; false otherwise. | ||||||||||||||||||||||||||||||
created_at | ISODateTime | Created at as an ISO-8601 datetime, returned in UTC unless otherwise noted. | ||||||||||||||||||||||||||||||
updated_at | ISODateTime | Updated at as an ISO-8601 datetime, returned in UTC unless otherwise noted. | ||||||||||||||||||||||||||||||
shipped_at | ISODateTime | Shipped at as an ISO-8601 datetime, returned in UTC unless otherwise noted. | ||||||||||||||||||||||||||||||
Referenced By
Example
{
"id": "UmVjb3JkOjEyMzQ=",
"legacy_id": 1234,
"account_id": "QWNjb3VudDoxMjM0",
"warehouse_id": "V2FyZWhvdXNlOjEyMzQ=",
"container_id": "UmVjb3JkOjEyMzQ=",
"carrier": "ups",
"shipping_methods": ["ups_ground", "fedex_2day"],
"shipping_labels": [{tracking_number: "1Z999AA10123456784", carrier: "ups"}],
"note": "Customer requested expedited handling.",
"needs_manifest": true,
"created_at": "2026-07-09T15:30:00Z",
"updated_at": "2026-07-09T15:30:00Z",
"shipped_at": "2026-07-09T15:30:00Z"
}