curl --request GET \
--url https://api.clickpesa.com/third-parties/billpay/{billPayNumber} \
--header 'Authorization: Bearer <token>'{
"billPayNumber": "55042914871931",
"billDescription": "Generic Bamboo Chees",
"billCustomerName": "Mr. Freddie Walker-Graham",
"billAmount": 90900,
"billPaymentMode": "EXACT"
}Queries for BillPay number details
curl --request GET \
--url https://api.clickpesa.com/third-parties/billpay/{billPayNumber} \
--header 'Authorization: Bearer <token>'{
"billPayNumber": "55042914871931",
"billDescription": "Generic Bamboo Chees",
"billCustomerName": "Mr. Freddie Walker-Graham",
"billAmount": 90900,
"billPaymentMode": "EXACT"
}Authorization header containing the JWT access token returned from the generate token endpoint. The token already includes the Bearer prefix. Example: Authorization: Bearer eyJhbGciOi...
BillPay number to query for details
Successfully queried for BillPay number details
BillPay number - This is the number that will be used to make payment. If a custom billReference was provided in the request, this will match that value.
"55042914871931"
Description of the bill
"Generic Bamboo Chees"
Name of the customer - for customer billpay numbers
"Mr. Freddie Walker-Graham"
Amount of the bill
90900
Payment mode for the bill. Applied only when billAmount is set
"EXACT"