Get SKU Quantity

Get SKU Quantity.

Returns the quantity of a specific SKU that is in stock in the store.

{
    "success": boolean,
    "errors": [],
    "results": [
        {
            "skuId": integer,
            "quantity": integer,
            "isCustom": boolean
        }
    ]
}
{
    "success": true,
    "errors": [],
    "results": [
        {
            "skuId": 15179,
            "quantity": 2,
            "isCustom": false
        }
    ]
}
Language
Click Try It! to start a request and see the response here!