Bills — Electricity
Validate Electricity Customer
POST
https://backendapi.sayswitchgroup.com/api/v1/electricity/validateValidates a customer’s meter number for a selected electricity provider and meter type (prepaid or postpaid).
Sample cURL Request
cURL
curl -X POST https://backendapi.sayswitchgroup.com/api/v1/electricity/validate \
-H "Content-Type: application/json" \
-d '{
"provider": "IBEDC",
"type": "prepaid",
"number": "0159003278896"
}'
Sample Response
JSON
{
"success": true,
"code": "00000",
"message": "Fetched successfully",
"data": {
"provider": "IBEDC",
"number": "0159003278896",
"type": "prepaid",
"Customer_Name": "IDOWU ADEDOYIN SUNDAY 3 ."
}
}