/
Get Inventory
This endpoint retrieves a list of all inventory items stored in the fulfilment centre under your account. Clients can filter the results using query parameters such as SKU or product ID.
- Checking stock levels before placing new orders.
- Filtering inventory to track specific products.
- Verifying stock availability for customer fulfilment.
Security
OAuth2
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inventory
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inventory
curl -i -X GET \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory?limit=0&page=0&sku=string&product_name=string&vendor=string&sort=string&sort_desc=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
{ "inventory": [ { … } ], "pagination": { "next": { … }, "next_url": "string", "prev": { … }, "prev_url": "string", "total": 0 } }