Operator List

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


In this API, you will provide the user's unique registration reference along with the selected recharge mode. This helps route the transaction through the appropriate processing channel—either online or offline—based on the specified preference.

Body Parameters
{
  "registrationID": "AOP-554",
  "RechargeType": "Online/offline"
}
Request Parameters
Name Type Description
registrationID String Unique registration identifier, often tied to the user .
RechargeType String This is meant to specify the type of recharge, the value will be in either 'online' or 'offline' format.
Responses

200

200

Response

200

RESPONSE BODY

object

responsecode    integer

status    boolean

data    array of objects

object

id     string

name     string

category     string

message    string

401

401

Response

401

RESPONSE BODY

Json


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/RechargeOperatorsList' \
--header 'Content-Type: application/json' \
--data  '{
  "registrationID": "AOP-554",
  "RechargeType": "Online"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/RechargeOperatorsList'
payload = json.dumps({
  "registrationID": "AOP-554",
  "RechargeType": "Online"
}) 

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/RechargeOperatorsList',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "registrationID": "AOP-554",
     "RechargeType": "Online"
  }) 
}; 
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/RechargeOperatorsList')
var content = new StringContent(
  "{
    "registrationID": "AOP-554",
   "RechargeType": "Online"
  }",
  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/RechargeOperatorsList',
  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 =>  '{
    "registrationID": "AOP-554",
     "RechargeType": "Online"
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

-Result

Example

 
{
  "responsecode": 1,
  "status": true,
  "data": [
    {
      "id": "11",
      "name": "Airtel",
      "category": "Prepaid"
    },
    {
      "id": "12",
      "name": "Airteldth",
      "category": "DTH"
    }
  ],
  "message": "Operator List Fetched"
}
                                
{
  "status": false,
  "responsecode": 5,
  "message": "Signature verification failed"
}