Enugu Electric API Integration
This section contains the recommended flow for integrating Enugu Electricity Bills Payment services on the VTpass RESTful API.
This API allows payment to both prepaid and postpaid EEDC meters.
The VTpass EEDC payment API allows you to vend token for EEDC Prepaid meters and also pay electricity bills for EEDC Postpaid meters using the meter number / Account ID.
For Prepaid meters, a token is generated. This token will be loaded on the customer’s meter by the customer.
Please display token to customer after a successful transaction, also send token by email and SMS to customer.
Enugu Electric covers the following states: Abia, Anambra, Ebonyi, Enugu and Imo State.
Authentication
Learn about authentication from here.
Available Endpoints
To integrate the VTpass Enugu Electricity (EEDC) Bills Payment RESTful API, the endpoints below applies:
- Verify Meter Number
- Purchase Product (prepaid and postpaid payments available)
- Query transaction status
Always ensure you validate the customer’s meter number.
ServiceID: enugu-electric
VERIFY METER NUMBER
Using a POST method, you can verify a meter number with the following endpoint:
Live: https://vtpass.com/api/merchant-verify
Sandbox: https://sandbox.vtpass.com/api/merchant-verify
On Sandbox, please use the following meter numbers (sandbox) to test:
For prepaid: 1111111111111
For Postpaid: 1010101010101
To simulate a failed meter number validation, please use any number apart from the one provided above as meter number.
FIELDS | M/O | TYPE | DESCRIPTION |
billersCode | M | Number | The meter number you wish to make the bills payment on.
On Sandbox For Postpaid: 1010101010101 |
serviceID | M | String | Service ID as specified by VTpass. In this case, it is enugu-electric |
type | M | String | This is basically the type of meter you are trying to validate. It can be either prepaid or postpaid |
EXPECTED RESPONSE
{ "code":"000", "content":{ "Customer_Name":"SUNDAY AGAGARAGA", "Account_Number":"1111111111111", "Meter_Number":"1111111111111", "Business_Unit":"OJO", "Address":"", "Customer_Arrears":"" } }
PURCHASE PRODUCT (Payment)
You can make a purchase for either a prepaid or postpaid meter.
Prepaid Meter Payment
Using a POST method, prepaid Token can be vended for Enugu Electric prepaid meters with the endpoint below:
Live: https://vtpass.com/api/pay
Sandbox: https://sandbox.vtpass.com/api/pay
ServiceID: enugu-electric
On Sandbox, please use the following prepaid meter number to test:
For prepaid: 1111111111111
To simulate a failed prepaid meter purchase, please use any number apart from the one provided above as meter number.
FIELDS | Mandatory/Optional | TYPE | DESCRIPTION |
request_id | M | String | This is a unique reference with which you can use to identify and query the status of a given transaction after the transaction has been executed.
Click here to understand how to generate a valid request ID
|
serviceID | M | String | Service ID as specified by VTpass. In this case, it is enugu-electric |
billersCode | M | String | The meter number you wish to make the bills payment on |
variation_code | M | String | This is the meter type. In this case prepaid |
amount | M | Number | The amount (Naira) of electricity you want to purchase. |
phone | M | Number | The phone number of the customer or recipient of this service |
EXPECTED RESPONSE
{ "code": "000", "content": { "details": { "appliedToArrears": 0, "arrearsBalance": 0, "wallet": 0, "exchangeReference": "1111111111111", "vat": 34.88, "invoiceNumber": "43903621", "appliedToWallet": 0, "units": 8.6, "responseMessage": "Payment successful", "status": "ACCEPTED", "responseCode": 200, "token": "45105559352377689980" }, "transactionNumber": "1111111111111" } }
Postpaid Meter Payment
Using a POST method, electricity bills can be paid for Kaduna Electric postpaid meters with the endpoint below:
Live: https://vtpass.com/api/pay
Sandbox: https://sandbox.vtpass.com/api/pay
ServiceID: enugu-electric
On Sandbox, please use the following meter number to test:
For postpaid: 1010101010101
To simulate a failed postpaid meter payment, please use any number apart from the one provided above as meter number.
FIELDS | Mandatory/Optional | TYPE | DESCRIPTION |
request_id | M | String | This is the reference with which you can use to query the status of a given transaction after the transaction has been executed. |
serviceID | M | String | Service ID as specified by VTpass. In this case, it is enugu-electric |
billersCode | M | String | The meter number you wish to make the bills payment on |
variation_code | M | String | This is the meter type. In this case postpaid
|
amount | M | Number | The amount (Naira) of electricity you want to purchase |
phone | M | Number | The phone number of the customer or recipient of this service |
QUERY TRANSACTION STATUS
Using a POST method, transaction status can be queried with the endpoint below:
LIVE: https://vtpass.com/api/requery
Sandbox: https://sandbox.vtpass.com/api/requery
FIELDS | Mandatory/Optional | TYPE | DESCRIPTION |
request_id | M | String | This is the reference with which you sent when purchasing a transaction after the transaction has been executed. |
EXPECTED RESPONSE
For Successful Prepaid Meter Payment
{ "code": "000", "content":{ "details": { "appliedToArrears": 0, "arrearsBalance": 0, "wallet": 0, "exchangeReference": "1111111111111", "vat": 34.88, "invoiceNumber": "43903621", "appliedToWallet": 0, "units": 8.6, "responseMessage": "Payment successful", "status": "ACCEPTED", "responseCode": 200, "token": "45105559352377689980" }, "transactionNumber": "1111111111111" } }
You can check out the complete list of RESPONSE CODES HERE.