Recharge
Post https://api.businessonlinesolution.in/api/AOP/Recharge
Use this API to authenticate with the AOP system and obtain the authorization bearer token. All other API calls must have this token as an Authorization header in the format 'Bearer' (without quotes) for them to get processed. The generated token is valid for 600 seconds.
Click to view the steps to generate a public key and the signature.
Body Parameters
{ "operator":"311", "canumber":"DL12CB4685", "amount":10, "referenceid":"1234435687678", "latitude":"99", "longitude":"98", "bill_fetch":{ "billAmount":"1000.0", "billnetamount":"1000.0", "minBillAmount":1000, "acceptPayment":true, "acceptPartPay":true, "cellNumber":"DL12CB4685", "userName":"NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }
Responses

200
200

Response
200

RESPONSE BODY
object
status boolean
response_code integer
message string

401
401

Response
401

RESPONSE BODY
Object
status boolean
responsecode integer
message string
Did this page help you? Yes No
Language





cURL
curl --location ' https://api.businessonlinesolution.in/api/AOP/Recharge' \ --header 'Content-Type: application/json' \ --data '{ "operator": 311, "canumber": "DL12CB4685", "amount": 10, "referenceid": "1234435687678", "latitude": "99", "longitude": "98", "bill_fetch": { "billAmount": "1000.0", "billnetamount": "1000.0", "minBillAmount": 1000, "acceptPayment": true, "acceptPartPay": true, "cellNumber": "DL12CB4685", "userName": "NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }'
import requests import json url = 'https://api.businessonlinesolution.in/api/AOP/Recharge' payload = json.dumps({ "operator": 311, "canumber": "DL12CB4685", "amount": 10, "referenceid": "1234435687678", "latitude": "99", "longitude": "98", "bill_fetch": { "billAmount": "1000.0", "billnetamount": "1000.0", "minBillAmount": 1000, "acceptPayment": true, "acceptPartPay": true, "cellNumber": "DL12CB4685", "userName": "NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }) headers = { "Content-type" : "application/json" } response = requests.request("POST", url, headers=headers, data=payload) print (response.text)
var requests = require("request"); var options = { "method" : "POST", "url" : 'https://api.businessonlinesolution.in/api/AOP/Recharge', "headers" : { "Content-Type" : 'application/json' }, body: JSON.stringify({ "operator": 311, "canumber": "DL12CB4685", "amount": 10, "referenceid": "1234435687678", "latitude": "99", "longitude": "98", "bill_fetch": { "billAmount": "1000.0", "billnetamount": "1000.0", "minBillAmount": 1000, "acceptPayment": true, "acceptPartPay": true, "cellNumber": "DL12CB4685", "userName": "NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }) }; request(options, function(error, response){ if(error) throw new Error(error); console.log(response.body); });
var client = new HttpClient(); var request = new HttpRequestMessage(HttpMethod.Post,'https://api.businessonlinesolution.in/api/AOP/Recharge') var content = new StringContent( "{ "operator": 311, "canumber": "DL12CB4685", "amount": 10, "referenceid": "1234435687678", "latitude": "99", "longitude": "98", "bill_fetch": { "billAmount": "1000.0", "billnetamount": "1000.0", "minBillAmount": 1000, "acceptPayment": true, "acceptPartPay": true, "cellNumber": "DL12CB4685", "userName": "NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }", null,"application/json" ); request.Content = content; var response = await client.SendAsync(request); response.EnsureSuccessStatusCode(); Console.WriteLine(await response.Content.ReadAsStringAsync());
<?php $curl = curl_init(); curl_setopt_array($curl, array( CURLOPT_URL => 'https://api.businessonlinesolution.in/api/AOP/Recharge', CURLOPT_RETURNTRANSFER => true, CURLOPT_ENCODING => '', CURLOPT_MAXREDIRS => 10, CURLOPT_TIMEOUT => 0, CURLOPT_FOLLOWLOCATION => true, CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, CURLOPT_CUSTOMREQUEST => 'POST', CURLOPT_POSTFIELDS => '{ "operator": 311, "canumber": "DL12CB4685", "amount": 10, "referenceid": "1234435687678", "latitude": "99", "longitude": "98", "bill_fetch": { "billAmount": "1000.0", "billnetamount": "1000.0", "minBillAmount": 1000, "acceptPayment": true, "acceptPartPay": true, "cellNumber": "DL12CB4685", "userName": "NITESH KUMAR SHARMA" } "RegistrationID": "AOP-554" }', CURLOPT_HTTPHEADER => array( 'Content-Type: application/json' ), )); $response = curl_exec($curl); curl_close($curl); echo $response;
RESPONSE


200
401
-Result
Example

-
200
-Result
Example
-
401
-Result
Example
{ "status": true, "response_code": 18, "message": "Duplicate Transaction" }
{ "status": false, "response_code": 10, "message": "Signature verification failed" }