Get Credit Notes
GET
/api/v1/sales/credit-notesRetrieve a list of credit notes submitted to Kenya Revenue Authority eTIMS. Kenya Revenue Authority does not expose a credit notes list endpoint, credit notes are submitted outbound only. Integrate a database to persist credit note history.
Requires x-api-key
http://localhost:8100/api/v1/sales/credit-notes
Query Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| since | string | Optional | Filter from this date, yyyyMMddHHmmss. Reserved for database integration. |
Response
{
"success": true,
"data": [],
"note": "Credit note history requires a database integration. Record responses from POST /sales/credit-note after each submission."
}curl http://localhost:8100/api/v1/sales/credit-notes \\
-H "x-api-key: YOUR_API_KEY"