GET
/
2.0
/
receiving
/
{id}
/
boxes
Get Warehouse Receiving Order Boxes
curl --request GET \
  --url https://api.shipbob.com/2.0/receiving/{id}/boxes \
  --header 'Authorization: Bearer <token>'
[
  {
    "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,
        "stowed_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"
  }
]

Authorizations

Authorization
string
header
required

Authentication using Personal Access Token (PAT) token

Path Parameters

id
string<int32>
required

Id of the receiving order

Response

Success

arrived_date
string<date-time> | null

Date the box arrived

box_id
integer
box_items
object[] | null

Information about the items included in the box

box_number
integer

The number of the box in the receiving order

box_status
enum<string>
Available options:
Awaiting,
Arrived,
Completed,
Counting,
Stowing,
Cancelled
counting_started_date
string<date-time> | null

Date counting of the box's inventory items started

received_date
string<date-time> | null

Date the box was received

tracking_number
string | null

Tracking number of the box shipment

Example:

"860C8CDC8F0B4FC7AB69AC86C20539EC"