Get List of Items
GET
/api/v1/itemsRetrieve all items registered for this taxpayer. The rraModYn field indicates whether the item has been modified since the last Kenya Revenue Authority sync.
Requires x-api-key
http://localhost:8100/api/v1/items
Response Notes
rraModYn Field
Response
{
"resultCd": "000",
"data": {
"itemList": [
{
"itemCd": "SV0000000Z001",
"itemClsCd": "SV",
"itemNm": "Monthly SaaS Subscription",
"taxTyCd": "B",
"dftPrc": 5000,
"useYn": "Y",
"rraModYn": "N",
"regDt": "20240101",
"modiDt": "20240101"
},
{
"itemCd": "GD0000000Z001",
"itemClsCd": "GD",
"itemNm": "USB-C Charging Cable",
"taxTyCd": "B",
"dftPrc": 850,
"useYn": "Y",
"rraModYn": "N",
"regDt": "20240105",
"modiDt": "20240105"
}
]
}
}curl http://localhost:8100/api/v1/items \\
-H "x-api-key: YOUR_API_KEY"