Get Procurement Item List

Retrieves the items associated with a given procurement ID.

🔒

Requires read_inventory access scope. More access scope

The Get Procurement Item List API allows users to retrieves a paginated list of all items associated with a specific procurement order.

This API is especially useful for:

  1. Reviewing all products included in a procurement order.
  2. Tracking quantities (pending, received, rejected) for inventory management.
  3. Auditing procurement fulfillment status.

Request Parameters

Public Request Parameters

📘

Path Parameters

ParameterTypeRequiredDescriptionExample
procurement_idstringYesUnique identifier of the procurement order"proc_123456789"

Query Parameters

ParameterTypeRequiredDescriptionExample
cursorstringNoPagination cursor for next page"eyJpZCI6IjEyMzQ1Njc4OSI="
page_sizeint32NoNumber of items per page (1-100)25

Response Explanation

Public Response Parameters

📘

Successful Response

ParameterTypeExampleDescription
codestring"200"HTTP status code
messagestring"Success"Operation result message
data.itemsarray of objects-List of procurement items
data.items.idstring"item_987654"Unique item identifier
data.items.procurement_idstring"proc_123456789"Parent procurement ID
data.items.pending_quantityint3250Quantity awaiting fulfillment
data.items.received_quantityint3230Quantity successfully received
data.items.rejected_quantityint325Quantity rejected/returned
data.items.transfer_quantityint3215Quantity in transit
data.items.variant_idstring"var_456789"Product variant ID
data.items.product_idstring"prod_123456"Parent product ID
data.items.product_titlestring"Wireless Headphones"Product display name
data.items.variant_titlestring"Black Edition"Variant display name
data.items.variant_skustring"WH-BLK-2025"Stock keeping unit
data.items.created_atstring"2025-06-01T09:00:00Z"Item creation timestamp
data.items.updated_atstring"2025-06-15T14:30:00Z"Last update timestamp
data.items.product_imageobject-Product image details
data.items.product_image.srcstring"https://example.com/image.jpg"Image URL
data.items.product_image.widthint32800Image width in pixels
data.items.product_image.heightint32600Image height in pixels
data.items.product_image.altstring"Wireless Headphones Black"Image alt text
data.cursorstring"eyJpZCI6IjEyMzQ1Njc4O"Next page cursor
data.has_morebooleantrueWhether more items exist

Error Response

FieldTypeExampleDescription
codestringInvalidParameterError http message
messagestring``Error message
Language
Credentials
Header
URL
Click Try It! to start a request and see the response here!