Get Branch List
GET
/api/v1/branchesList all branches registered for this taxpayer with Kenya Revenue Authority. Each branch has its own BHF code used in transactions.
Requires x-api-key
http://localhost:8100/api/v1/branches
Response Fields
Each branch in bhfList includes the branch ID (bhfId), name, opening date, address, and status.
Response
{
"resultCd": "000",
"data": {
"bhfList": [
{
"bhfId": "00",
"bhfNm": "MAIN BRANCH",
"bhfOpenDt": "20200101",
"adrs": "123 Moi Avenue, Nairobi",
"state": "ACTIVE",
"sttsCd": "01"
}
]
}
}curl http://localhost:8100/api/v1/branches \\
-H "x-api-key: YOUR_API_KEY"