Pay Internet

You can buy internet data plans through Payshiga’s API.

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

Endpoint

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

The API requires a number of request parameters.

FieldData TypeDescription
amountStringRequired. This specifies the amount of money the intended plan 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.
networkTypeString: Enum MTN GLO AIRTEL NINE_MOBILERequired. This is name of the target operator.
numberStringRequired. 11 digits that is the target of the payment.
packageNameStringRequired. The name of the selected package being paid for.
plan_idStringRequired. Unique identification number associated with the package.
providerStringRequired. This is the name of the mobile network provider.
referenceStringOptional information you can attach to the transaction.

Your request should look like this.

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