Skip to content

Get Inventory Batch

Request

Get a Single Batch

Description

This endpoint retrieves details for a single inventory batch by its unique batch ID.

Use Cases

  • Inspecting a specific batch for available and unusable quantities. - Verifying batch expiry and manufacturing dates.
Security
OAuth2
Path
batchIdstringrequired
curl -i -X GET \
  'https://developer-docs.quiqup.com/_mock/openapi/api/fulfilment/batches/{batchId}' \
  -H 'Authorization: Bearer <YOUR_TOKEN_HERE>'

Responses

Success response

Bodyapplication/json
batchobject(InventoryBatchResponse represents a single inventory batch. )required
Response
{ "batch": { "available": 0, "batch_number": "string", "created_at": "2019-08-24T14:15:22Z", "expiry_date": "string", "id": "string", "manufacturing_date": "string", "unusable": 0, "updated_at": "2019-08-24T14:15:22Z" } }