Get Bills Payment Status
To get bills payment status from the biller, send the request headers and body parameters via POST.
POST/status
Bills Payment Status
Request Samples
curl
-L -X POST 'https://test-api.billeroo.com/status' \
-H 'Authorization: {integratorToken}' \
-H 'Content-Type: application/json' \
-d '{
"reference": "{transactionReference}"
}'
{
"reference": "{transactionReference}"
}
200 Successful Response
401 Erroneous Response
Response Samples
{
"timestamp": "2024-11-11 02:29:02 +0000",
"status": 200,
"message": "OK",
"path": "/status",
"data": {
"statusCode": "OK.00.05",
"statusDescription": "Post Payment Successful"
}
}
{
"timestamp": "2024-11-11 02:44:26 +0000",
"status": 401,
"error": "Unauthorized",
"path": "/status"
}