GET
/
inventories
/
{inventoryId}
curl --request GET \
  --url https://api.shipbob.com/experimental/inventories/{inventoryId} \
  --header 'Authorization: <api-key>'
{
  "barcode": "string",
  "dimensions": {
    "height": 0.1,
    "is_locked": true,
    "length": 0.1,
    "unit": "string",
    "validated": true,
    "width": 0.1
  },
  "inventory_id": 0,
  "is_case": true,
  "is_lot": true,
  "name": "string",
  "sku": "string",
  "user_id": 0,
  "variant": {
    "hazmat": {
      "is_hazmat": true,
      "validated": true
    },
    "is_active": true,
    "is_bundle": true,
    "is_digital": true
  },
  "weight": {
    "unit": "string",
    "value": 0.1
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

inventoryId
string
required

Response

200
application/json
OK
barcode
string | null
dimensions
object
inventory_id
integer
is_case
boolean
is_lot
boolean
name
string | null
sku
string | null
user_id
integer
variant
object
weight
object