• PXM Products/
    PXM Products Inventory API/
    Get Multiple Stocks

    Get Multiple Stocks

    This endpoint works using client_credentials token or implicit token.

    POST Get Stocks for Multiple Products

    https://api.moltin.com/v2/inventories/multiple
    

    Retrieves stocks for multiple products.

    Parameters

    Headers

    NameRequiredTypeDescription
    AuthorizationRequiredstringThe Bearer token required to get access to the API.

    Body

    NameRequiredTypeDescription
    idRequiredstringThe unique identifier of the product.

    Request Example

    curl -X POST https://api.moltin.com/v2/inventories/multiple \
         -H "Authorization: Bearer XXXX" \
         -H "Content-Type: application/json" \
         -d $'{
                "data": [
            {
                "id": "a297a398-8386-43c2-8f23-d26913e96ecf"
            },
            {
                "id": "b296c2d7-e1ac-4d24-839f-0578ff091db0"
            }
            ]
        }'
    

    Response Example

    200 OK

    {
        "data": [
            {
                "id": "a297a398-8386-43c2-8f23-d26913e96ecf",
                "type": "stock",
                "total": 132,
                "available": 132,
                "allocated": 0
            },
            {
                "id": "b296c2d7-e1ac-4d24-839f-0578ff091db0",
                "type": "stock",
                "total": 100,
                "available": 100,
                "allocated": 0
            }
        ],
    
    
    }
    

    Was this helpful?

    Previous
    Get Single Stock Transaction