Pay TV Bill

You can buy satellite TV subscription packages through Payshiga’s API.

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

Endpoint

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

The API requires a number of request parameters.

FieldData TypeDescription
amountStringRequired. This specifies the amount of money the intended package costs.
currencyString: Enum NGN USD EUR GBP KES TZS GHS RWF XAF XOF ZAR UGX AUD CAD ETB EGP MAD MWK ZMW SLL MURRequired. This is the currency of the payment.
numberStringRequired. Unique code associated with the TV account.
packageNameStringThe name of the selected package being paid for.
plan_idStringUnique identification number associated with the package.
providerStringRequired. This is the name of the satelite TV provider.
utilityBillNameStringRequired. This identifies the specific type of utility bill being paid
referenceStringOptional information you can attach to the transaction.

Your request should look like this.

{
  "currency": "NGN",
  "utilityBillName": "string",
  "packageName": "string",
  "provider": "string",
  "number": "string",
  "amount": "string",
  "plan_id": "string",
  "reference": "string"
}