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
- 200
- 401
- 404
Items supplied by this vendor
Unauthorized — missing or invalid API key
Resource not found
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
}
]
}