Webhooks
Products
Inventory
Orders
- POSTCancel one Shipment by Shipment Id
- GETGet one Shipment's status timeline by Shipment Id
- GETGet Orders
- POSTCreate Order
- GETGet one Shipment by Order Id and Shipment Id
- GETGet logs for one Shipment by Shipment Id
- GETGet all Shipments for Order
- GETGet one Shipment's status timeline by Order Id and Shipment Id
- GETGet one Shipment by Shipment Id
- PUTUpdate a Shipment
- GETGet logs for one Shipment by Order Id and Shipment Id
- POSTCancel multiple Shipments by Shipment Id
- POSTEstimate Fulfillment Cost For Order
- GETGet shipping methods
- POSTCancel single Order by Order ID
- GETGet Order Store Json
- POSTSave the Store Order Json
- GETGet Order
- POSTCancel one Shipment by Order Id and Shipment Id
Locations
Receiving
- GETGet Fulfillment Centers
- GETGet Warehouse Receiving Order Box Labels (DEPRECATED)
- POSTCancel Warehouse Receiving Order (DEPRECATED)
- GETGet a Warehouse Receiving Order by Purchase Order Number (DEPRECATED)
- POSTCreate Warehouse Receiving Order (DEPRECATED)
- GETGet Warehouse Receiving Order (DEPRECATED)
Returns
Channels
Receiving
Get Warehouse Receiving Order (DEPRECATED)
Receiving
Get Warehouse Receiving Order (DEPRECATED)
This endpoint is deprecated. Please use /2.0/receiving/
GET
/
receiving
/
{id}
curl --request GET \
--url https://api.shipbob.com/1.0/receiving/{id} \
--header 'Authorization: Bearer <token>'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"boxes": [
{
"arrived_date": "2019-08-24T14:15:22Z",
"box_id": 0,
"box_items": [
{
"inventory_id": 0,
"lot_date": "2019-08-24T14:15:22Z",
"lot_number": "string",
"quantity": 0,
"received_quantity": 0
}
],
"box_number": 0,
"box_status": "Awaiting",
"counting_started_date": "2019-08-24T14:15:22Z",
"received_date": "2019-08-24T14:15:22Z",
"tracking_number": "860C8CDC8F0B4FC7AB69AC86C20539EC"
}
],
"expected_arrival_date": "2019-08-24T14:15:22Z",
"fulfillment_center": {
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "example@example.com",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
},
"id": 0,
"insert_date": "2019-08-24T14:15:22Z",
"last_updated_date": "2019-08-24T14:15:22Z",
"package_type": "Package",
"purchase_order_number": "string",
"status": "Awaiting"
}
Authorizations
Authentication using Personal Access Token (PAT) token
Path Parameters
Id of the receiving order
Response
200
application/json
Success
Information about a receiving order
Was this page helpful?
curl --request GET \
--url https://api.shipbob.com/1.0/receiving/{id} \
--header 'Authorization: Bearer <token>'
{
"box_labels_uri": "https://api.shipbob.com/1.0/receiving/1/labels",
"box_packaging_type": "EverythingInOneBox",
"boxes": [
{
"arrived_date": "2019-08-24T14:15:22Z",
"box_id": 0,
"box_items": [
{
"inventory_id": 0,
"lot_date": "2019-08-24T14:15:22Z",
"lot_number": "string",
"quantity": 0,
"received_quantity": 0
}
],
"box_number": 0,
"box_status": "Awaiting",
"counting_started_date": "2019-08-24T14:15:22Z",
"received_date": "2019-08-24T14:15:22Z",
"tracking_number": "860C8CDC8F0B4FC7AB69AC86C20539EC"
}
],
"expected_arrival_date": "2019-08-24T14:15:22Z",
"fulfillment_center": {
"address1": "5900 W Ogden Ave",
"address2": "Suite 100",
"city": "Cicero",
"country": "USA",
"email": "example@example.com",
"id": 0,
"name": "Cicero (IL)",
"phone_number": "555-555-5555",
"state": "IL",
"timezone": "Central Standard Time",
"zip_code": "60804"
},
"id": 0,
"insert_date": "2019-08-24T14:15:22Z",
"last_updated_date": "2019-08-24T14:15:22Z",
"package_type": "Package",
"purchase_order_number": "string",
"status": "Awaiting"
}