Get a List of Suppliers
GET
/api/v1/suppliersSupplier records in Kenya Revenue Authority eTIMS are accessed through the purchases list, when a supplier submits a sale invoice to Kenya Revenue Authority, it appears in your purchases. Use GET {{API_PATH}}/purchases to see supplier invoices submitted against your PIN.
Requires x-api-key
http://localhost:8100/api/v1/suppliers
How to Find Supplier Records
Fetch your purchase list, each entry contains supplier identification fields including spplrTin, spplrNm, and spplrBhfId.
Response
{
"success": true,
"data": [],
"note": "Supplier records are accessed via the purchases list. Use GET /purchases to see supplier invoices submitted to your PIN. A local supplier directory requires a database integration."
}# Get all purchase invoices (includes supplier info)
curl http://localhost:8100/api/v1/purchases \\
-H "x-api-key: YOUR_API_KEY"