Till Payouts

List all till payments

GET
/api/sandbox/v1/till/all

Fetch every till payment belonging to your organisation.

Authorization

bearerAuth
AuthorizationBearer <token>

The access_token returned by POST /api/v1/get-token.

In: header

Query Parameters

companyId*string

The UUID of your company.

Formatuuid

Response Body

application/json

application/json

curl -X GET "https://example.com/api/sandbox/v1/till/all?companyId=4d6e1ea9-5ab8-496a-978f-7e9b2bce80c4"
{  "status": 200,  "message": "Success",  "data": [    {      "id": 1,      "amount": 1000,      "uuid": "20f6da4c-f1fa-4af0-9e5c-72c4e7ac8f57",      "organisation": {        "id": 2,        "uuid": "4d6e1ea9-5ab8-496a-978f-7e9b2bce80c4",        "name": "Maina Properties Limited Ke",        "phoneNumber": "254745362174",        "email": "maina@gmail.com",        "uniqueReference": "4780606",        "createdAt": "2025-01-24T13:35:12.151225",        "updatedAt": "2025-01-24T13:35:12.151225"      },      "accountNumber": "435567676",      "businessNumber": "12345",      "remarks": "Here are the remarks",      "occasion": "Here is the occasion",      "originatorConversationId": "10721650-d5f0-4dac-8d17-cb3b74df34c8",      "conversationId": "AG_20230420_2010759fd5662ef6d054",      "callbackUrl": "https://kiotapay.co.ke",      "status": "PENDING",      "responseCode": 0,      "responseDescription": "Accept the service request successfully.",      "receiverName": null,      "transactionReceipt": null,      "createdAt": "2025-01-24T17:10:30.65054",      "updatedAt": "2025-01-24T17:10:30.65054"    }  ]}