object Package
Fields
| Field | Type | Description |
|---|---|---|
id | String | |
legacy_id | Int | |
shipment_id | String | |
warehouse_id | String | |
order_id | String | |
order_number | String | |
user_id | String | |
user_first_name | String | |
user_last_name | String | |
total_items | Int | The sum of every shipped item's quantity in the package |
unique_items | Int | The number of unique shipped items in the package |
barcodes_scanned | Int | The nuber of barcodes scanned in the package |
created_at | ISODateTime | |
shipment | Shipment | |
order | Order |
Referenced By
- PackageEdge Type
Example
{
"id": "abc123",
"legacy_id": 987,
"shipment_id": "abc123",
"warehouse_id": "abc123",
"order_id": "abc123",
"order_number": "abc123",
"user_id": "abc123",
"user_first_name": "abc123",
"user_last_name": "abc123",
"total_items": 987,
"unique_items": 987,
"barcodes_scanned": 987,
"created_at": "abc123",
"shipment": Shipment,
"order": Order
}