Paybill Payouts

Get paybill payment status

GET
/api/sandbox/v1/paybill/status

Retrieve just the current status of a paybill payment.

Authorization

bearerAuth
AuthorizationBearer <token>

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

In: header

Query Parameters

requestId*string

The unique ID of the transaction, returned when it was created.

Formatuuid

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/api/sandbox/v1/paybill/status?requestId=cd3e5b37-8f23-465e-a720-b2a78f2b62c1"
{  "status": 200,  "message": "Success",  "data": {    "accountNumber": "22442244",    "businessNumber": "2232334",    "requestId": "4f88dd2e-c4b4-4a3f-9605-1679686a6641",    "amount": 1000,    "status": "PENDING"  }}