List vendors
GET/vendors
Returns a paginated list of your vendor accounts. Each entry includes the vendor name, status, total purchase order count, and the date of their most recent PO. Use this for a high-level view of your supplier base. Retrieve a specific vendor for full contact, address, and payment term details.
Request
Response
- 200
- 400
- 401
Paginated list of vendors
Bad request — invalid parameters
Unauthorized — missing or invalid API key
Response
{
"data": [
{
"id": "3054",
"name": "Pacific Ingredients Co.",
"status": "active",
"purchaseOrderCount": 23,
"lastPurchaseOrderDate": "2025-09-15"
}
],
"pagination": {
"offset": 0,
"limit": 20,
"total": 87
}
}