This is the API documentation for the Fulfilment API.
Fulfilment API (1.0.0)
Download OpenAPI description
Languages
Servers
Mock server
https://developer-docs.quiqup.com/_mock/openapi/
Production
https://platform-api.quiqup.com/
Staging
https://platform-api.staging.quiqup.com/
Request
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
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory?limit=0&page=0&sku=string&product_name=string&sort=string&sort_desc=true' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "inventory": [ { … } ], "pagination": { "next": { … }, "next_url": "string", "prev": { … }, "prev_url": "string", "total": 0 } }
Request
This endpoint retrieves inventory details for a specific product using its unique productId. The response includes stock availability, storage location, and last update timestamp.
- Checking real-time stock levels for a specific product.
- Verifying if a product is available in a fulfilment centre.
- Monitoring stock movements to optimise replenishment.
Security
OAuth2
- Mock serverhttps://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory/{sku}
- Productionhttps://platform-api.quiqup.com/api/fulfilment/inventory/{sku}
- Staginghttps://platform-api.staging.quiqup.com/api/fulfilment/inventory/{sku}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/inventory/{sku}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
application/json
{ "available": 0, "cost": "string", "created_at": "2019-08-24T14:15:22Z", "expiry_groups": [ { … } ], "inbound_state": "string", "product": { "availability_status": 0, "barcode": "string", "cost_price": 0, "country_code_of_origin": "string", "created_at": "2019-08-24T14:15:22Z", "currency": "AED", "description": "string", "dimensions": {}, "harmonized_system_code": "string", "id": "string", "image": "string", "inventory_tracked": true, "name": "string", "partner_product_id": "string", "platform_price": 0, "requires_shipping": true, "retail_price": 0, "selling_price": 0, "sku": "string", "status": "active", "total_sales": 0, "track_expiry": true, "type": "string", "updated_at": "2019-08-24T14:15:22Z", "vendor": "string", "weight": 0, "weight_unit": "string" }, "product_id": "string", "tracked": true, "updated_at": "2019-08-24T14:15:22Z" }