Pay Bill

Post  https://api.aopay.co.in/api/AOP/BillPaymentPaybill


The Pay Bill Processes the actual bill payment using the fetched details. This request includes customer input, amount, and selected operator.

Body Parameters
{
    "operator":"11",
    "canumber":"102277100",
    "amount":"100",
    "referenceid":"20018575947",
    "latitude":"27.2232",
    "longitude":"78.26535",
    "RegistrationID":"AOP-554",
    "mode":"online /offline",
    "bill_fetch":{
                 "billAmount":"820.0",
                 "billnetamount":"820.0",
                 "billdate":"01Jan1990",
                 "dueDate":"2021-01-06",
                 "acceptPayment":true,
                 "acceptPartPay":false,
                 "cellNumber":"102277100",
                 "userName":"SALMAN"
                 }
}
Request Parameters
Name Type Description
operator String Numeric code representing the service provider or operator.
canumber String Consumer Account Number represents a unique identifier assigned to a utility account or subscriber.
amount String The amount being paid by the customer in this transaction.
Responses

200

200

Response

200

RESPONSE BODY

object

status     boolean

response_code     integer

operatorid     string

ackno     integer

opening     string

closing     string

message     string

401

401

Response

401

RESPONSE BODY

Object

responsecode integer

status boolean

message string


Did this page help you?     Yes    No

Language
shell Shell
python Python
node Node
c# C#
php PHP

cURL

curl --location 'https://api.aopay.co.in/api/AOP/BillPaymentPaybill' \
--header 'Content-Type: application/json' \
--data  '{
  "operator": "11",
  "canumber": "102277100",
  "amount": "100",
  "referenceid": "20018575947",
  "latitude": "27.2232",
  "longitude": "78.26535",
  "RegistrationID": "AOP-554",
  "mode": "online",
  "bill_fetch": {
    "billAmount": "820.0",
    "billnetamount": "820.0",
    "billdate": "01Jan1990",
    "dueDate": "2021-01-06",
    "acceptPayment": true,
    "acceptPartPay": false,
    "cellNumber": "102277100",
    "userName": "SALMAN"
  }
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/BillPaymentPaybill'
payload = json.dumps({
  "operator": "11",
  "canumber": "102277100",
  "amount": "100",
  "referenceid": "20018575947",
  "latitude": "27.2232",
  "longitude": "78.26535",
  "RegistrationID": "AOP-554",
  "mode": "online",
  "bill_fetch": {
    "billAmount": "820.0",
    "billnetamount": "820.0",
    "billdate": "01Jan1990",
    "dueDate": "2021-01-06",
    "acceptPayment": true,
    "acceptPartPay": false,
    "cellNumber": "102277100",
    "userName": "SALMAN"
  }
}) 

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.aopay.co.in/api/AOP/BillPaymentPaybill',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "operator": "11",
    "canumber": "102277100",
    "amount": "100",
    "referenceid": "20018575947",
    "latitude": "27.2232",
    "longitude": "78.26535",
    "RegistrationID": "AOP-554",
   "mode": "online",
    "bill_fetch": {
      "billAmount": "820.0",
      "billnetamount": "820.0",
      "billdate": "01Jan1990",
      "dueDate": "2021-01-06",
      "acceptPayment": true,
      "acceptPartPay": false,
      "cellNumber": "102277100",
      "userName": "SALMAN"
    }
  }) 
}; 
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.aopay.co.in/api/AOP/BillPaymentPaybill')
var content = new StringContent(
  "{
    "operator": "11",
    "canumber": "102277100",
    "amount": "100",
    "referenceid": "20018575947",
    "latitude": "27.2232",
    "longitude": "78.26535",
    "RegistrationID": "AOP-554",
    "mode": "online",
    "bill_fetch": {
      "billAmount": "820.0",
      "billnetamount": "820.0",
      "billdate": "01Jan1990",
      "dueDate": "2021-01-06",
      "acceptPayment": true,
      "acceptPartPay": false,
      "cellNumber": "102277100",
      "userName": "SALMAN"
    }
  }",
  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.aopay.co.in/api/AOP/BillPaymentPaybill',
  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": "11",
    "canumber": "102277100",
    "amount": "100",
    "referenceid": "20018575947",
    "latitude": "27.2232",
    "longitude": "78.26535",
    "RegistrationID": "AOP-554",
   "mode": "online",
    "bill_fetch": {
      "billAmount": "820.0",
      "billnetamount": "820.0",
      "billdate": "01Jan1990",
      "dueDate": "2021-01-06",
      "acceptPayment": true,
      "acceptPartPay": false,
      "cellNumber": "102277100",
      "userName": "SALMAN"
      }
    }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

-Result

Example

 
{
  "status": true,
  "response_code": 1,
  "operatorid": "MockLazYafrYZ7",
  "ackno": 27113,
  "opening": "3935.00",
  "closing": "3835.00",
  "message": "You Bill Payment for Airtel of Amount 100 is successful."
}
                                
 
{
  "status": false,
  "response_code": 20,
  "message": "Signature verification failed"
}