Bills Payment
Validate electricity
Validate Electricity
This endpoint ensures that the account information is accurate and active, reducing the risk of errors in processing payments.
Endpoint
{{baseurl}}/bill-payment/validate-electricity
Method: POST
The API requires a number of request parameters.
Field | Data Type | Description |
---|---|---|
entityNumber | String | Required. Unique code / meterNumber associated with the electricity account. |
serviceCategoryId | String | Required. This is the id of the electricity provider whose plans you want information about. |
{
"serviceCategoryId": "string",
"entityNumber": "Your electricity account code"
}
Get that right, and you should get a response like this.
{
"success": true,
"statusCode": 200,
"message": "TV validation successful",
"data": {
"discoCode": "string e.g IBADAN",
"vendType": "POSTPAID",
"meterNo": "your meter number e.g 903398146101",
"minVendAmount": 500,
"maxVendAmount": 10000000,
"outstanding": 0,
"debtRepayment": 0,
"name": "Your house name on the your bill",
"address": "Address on the bill",
"orderId": "Your order id"
}
}