Skip to main content

Get vendor items

GET 

/vendors/:vendorId/items

Returns every item this vendor supplies. Each entry includes your internal item name and inventory code alongside the vendor's own item code and name, their minimum order quantity, the most recent purchase price, and the average price across all POs. Use this to see a vendor's full catalog at a glance or to compare their pricing against other suppliers.

Request

Response

Items supplied by this vendor

Response
{
"vendorId": null,
"vendorName": null,
"items": [
{
"itemId": "2087",
"itemName": "Organic Tahini",
"inventoryCode": "INV-000312",
"vendorItemCode": null,
"vendorItemName": null,
"vendorMinOrderQuantity": 50,
"lastPrice": 1.52,
"averagePrice": 1.48,
"status": null
}
]
}