GET
/
receiving
/
{id}
/
boxes
curl --request GET \
  --url https://api.shipbob.com/2.0/receiving/{id}/boxes \
  --header 'Authorization: <api-key>'
[
  {
    "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

Provide your personal access token in the format 'Bearer {your_personal_access_token}'

Path Parameters

id
string
required

Id of the receiving order

Response

200
application/json
Success
arrived_date
string | null

Date the box arrived

box_id
integer
box_items
object[] | null

Information about the items included in the box

Information about an item contained inside a box as part of a receiving order

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 | null

Date counting of the box's inventory items started

received_date
string | null

Date the box was received

tracking_number
string | null

Tracking number of the box shipment

Example:

"860C8CDC8F0B4FC7AB69AC86C20539EC"