Pay Electricity Bill

You can buy electricity units through Payshiga’s API.

If you trigger a POST request, Payshiga will directly disburse it from your positive balance.

Endpoint

{{baseurl}}/bill-payment/electricity/pay

The API requires a number of request parameters.

FieldData TypeDescription
serviceCategoryIdString

Required. The serviceCategoryId of the selected Cable.

amountString

Required. This specifies the amount of money the intended package costs.

meterNumberString

Required. Unique code associated with the electricity account.

vendType

String: Enum PREPAID POSTPAID

This specifies the type of utility service you are paying for.
referenceStringOptional information you can attach to the transaction.

Your request should look like this.

{
  "serviceCategoryId": "string",
  "amount": 5000,
  "vendType": "string",
  "meterNumber": "Unique code associated with your electricity account"
}