Inbound Shipments
Index
Get a list of all inbound shipments, using Pagination.
GET
/shipments/inbound
Example Response
Index (Archived Shipments)
Get a list of all archived inbound shipments, using Pagination.
GET
/shipments/inbound/archived
Example Response
Show
Retrieve a specific shipment
GET
/shipments/inbound/{SHIPMENT_ID}
Example Response
Create
Create a new inbound shipment
POST
/shipments/inbound
Parameter | Type | Examples | Description |
---|---|---|---|
notes
| string | Inventore iusto facilis aperiam modi est. | Shipment notes |
name
| string | Walmart Oct 26 | The name of the shipment |
warehouse_id
| integer | 12 | The ID of the warehouse that you are sending the shipment from. |
Example Response
Update
Update a shipment name and notes
PUT
/shipments/inbound/{SHIPMENT_ID}
Parameter | Type | Examples | Description |
---|---|---|---|
notes
| string | Inventore iusto facilis aperiam modi est. | Shipment notes |
internal_notes
| string | Inventore iusto facilis aperiam modi est. | Warehouse / staff notes |
name
| string | Walmart Oct 26 | The name of the shipment |
Example Response
Submit
Add tracking numbers to a shipment and change the status to shipped
POST
/shipments/inbound/{SHIPMENT_ID}/submit
Parameter | Type | Examples | Description |
---|---|---|---|
tracking_numbers
| array<string> | [9405500205903080427328] | An array of alphanumeric strings. Required unless carrier is set to no_tracking |
carrier
| string | usps | Valid values: canada_post, dhl_express, fedex, usps,ups,shippo,no_tracking,other |
Example Response
Receive
Change the status of the shipment to received. No parameters are required.
POST
/shipments/inbound/{SHIPMENT_ID}/receive
Example Response
Batch Archive
Archive one or more shipments.
POST
/shipments/inbound/batch/archive
Parameter | Type | Examples | Description |
---|---|---|---|
shipment_ids
| array | See shipment_ids.* parameters | An array of shipment IDS |
shipment_ids.*
| int | 21 | The ID of the shipment |