Skip to main content

Get Stock for Product

GET 

/inventories/:product_uuid

Gets the stock for the product matching the specified unique identifier.

Request

Path Parameters

    product_uuid stringrequired

    The unique identifier of the product.

Responses

Success. Returns the stock for the given product UUID

Schema
    data Inventory
    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...