Get Inventory

Returns the inventory level of skus within the fulfillment provider warehouses. Pagination is available in the next_request fields. Return the next expected request in the next_request response field. Pagination ends when the next_request response field is empty.

Request
Request Body schema: application/json
transaction_id
required
string <guid>

A randomly generated transaction ID, used to correlate the request and response.

required
object (Auth)

Authentication properties

skus
Array of strings

Comma separated list of skus to be used as filter criteria

string or object
Responses
200

OK

post/get_inventory
Request samples
application/json
{
  • "transaction_id": "8e4e3181-2a7e-4153-ba6a-f2d6e121500b",
  • "auth": {
    },
  • "skus": [
    ],
  • "next_request": null
}
Response samples
application/json
{
  • "inventory": {
    },
  • "next_request": {
    }
}