Skip to main content
POST
/
inventory
/
get_items_incoming
Inventory - Get Items Incoming
curl --request POST \
  --url https://api.skulabs.com/inventory/get_items_incoming \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "item_ids": [
    "<string>"
  ],
  "warehouse_ids": [
    "<string>"
  ]
}
'
{
  "items": [
    {
      "_id": "507f1f77bcf86cd799439011",
      "ordered": 123,
      "received": 123
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
item_ids
string[]
required

Array of item IDs to look up

warehouse_ids
string[]

Filter by warehouse IDs

Response

Incoming inventory for requested items from open purchase orders

items
object[]
required

Array of items with ordered and received totals