Skip to main content

Get Stock for Multiple Products

POST 

/inventories/multiple

Returns stock for all products matching the supplied unique identifiers.

Request

Body

    data object[]
  • Array [
  • id string

    The unique identifier of the product.

  • ]

Responses

Success. Multiple products and their stock values are returned.

Schema
    data Inventory[]
  • Array [
  • id string

    The unique identifier of the product.

    type stringrequired

    Possible values: [stock]

    Default value: stock

    The type represents the object being returned. Always stock.

    total integer

    The total amount of stock we have.

    available integer

    The amount of stock available for purchase.

    allocated integer

    The amount of paid for stock, also known as reserved.

  • ]
Loading...