List procurement items
GET/openapi/2026-01/procurements/:procurement_id/items
Retrieves the items associated with a given procurement ID.
Request
Path Parameters
Provide procurement ID to filter by
Query Parameters
Cursor for pagination
A limit on the number of objects to return. Range: 1-100 (default is 10)
Page number (1-based). Mutually exclusive with cursor
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
error code
error message
data object
items object[]
List of items
Procurement ID
Procurement ID
Pending quantity
Received quantity
Rejected quantity
Transfer quantity
Variant ID
Product ID
Product title
Variant title
Variant SKU
Creation timestamp, in ISO-8601 format
Last update timestamp, in ISO-8601 format
product_image object
Product image
The source URL of the image
The width of the image in pixels
The height of the image in pixels
Alt text for the image
Cursor for pagination
Whether there are more records
Total number of records across all pages (for page-mode pagination)
{
"code": "string",
"message": "string",
"data": {
"items": [
{
"id": "string",
"procurement_id": "string",
"pending_quantity": 0,
"received_quantity": 0,
"rejected_quantity": 0,
"transfer_quantity": 0,
"variant_id": "string",
"product_id": "string",
"product_title": "string",
"variant_title": "string",
"variant_sku": "string",
"created_at": "string",
"updated_at": "string",
"product_image": {
"src": "string",
"width": 0,
"height": 0,
"alt": "string"
}
}
],
"cursor": "string",
"has_more": true,
"total": 0
}
}