Welcome to the Pandora SMS Account recharge API. Our API that is flexible, scalable, and easy to integrate. Get familiar with our product by getting started or exploring our API documentation.
The account recharge API lives at https://www.sms.thepandoranetworks.com/API/topup.
Inorder to use the API to send SMS, you must have created a Pandora SMS Account .
https://www.sms.thepandoranetworks.com/API/topup
POST
These are separated using the “&” sign just like in a normal http get.
If your request is success, a JSON object is returned as follows
{"success": true, "messages": ["message"], "statusCode":201}
If your request is not success, a JSON object is returned as follows
{"success": false, "messages": ["message"], "statusCode":401}
Once the payment is successfully approved, we send you an Instant Payment Notification(IPN) to the callback_url you provided in the parameters above as follows. It's a POST request
[
'external_ref'=>'external_ref',
'msisdn'=>'payment contact',
'amount'=>'amount'
]
Once the payment is not success, we send you an Failure Payment Notification(IPN) to the callback_url you provided in the parameters above as follows. It's a POST request
[ 'failed_transaction_reference'=>'external_ref' ]