Version: 202607
List procurement items
GET/openapi/2026-07/procurements/:procurement_id/items
Retrieves the items associated with a given procurement ID.
Request
Path Parameters
procurement_id stringrequired
Provide procurement ID to filter by
Query Parameters
cursor string
Cursor for pagination
page_size int32
A limit on the number of objects to return. Range: 1-100 (default is 10)
Responses
- 200
OK
- application/json
- Schema
- Example
Schema
- Array [
- ]
codestring
error code
messagestring
error message
data object
items object[]
List of items
idstring
Procurement ID
procurement_idstring
Procurement ID
pending_quantityint32
Pending quantity
received_quantityint32
Received quantity
rejected_quantityint32
Rejected quantity
transfer_quantityint32
Transfer quantity
variant_idstring
Variant ID
product_idstring
Product ID
product_titlestring
Product title
variant_titlestring
Variant title
variant_skustring
Variant SKU
created_atstring
Creation timestamp, in ISO-8601 format
updated_atstring
Last update timestamp, in ISO-8601 format
product_image object
Product image
srcstring
The source URL of the image
widthint32
The width of the image in pixels
heightint32
The height of the image in pixels
altstring
Alt text for the image
cursorstring
Cursor for pagination
has_moreboolean
Whether there are more records
{
"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
}
}