Pan New Generate

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


In this API, you will provide the user's unique registration reference, personal identity information, and recharge request details along with the domain and partner identifiers. This ensures the request is authenticated and routed through the appropriate processing channel—either online or offline—based on the selected recharge mode and the domain's routing logic. The reference ID and NEP key help ensure secure tracking and internal verification of each transaction.

Body Parameters
{
  "mobileno": "99999999",
  "lastname": "Doe",
  "firstname": "John",
  "middlename": "Michael",
  "nep_key": "1234",
  "refid": "xyz24551",
  "domain": "google",
  "partnerId": "abc",
  "email": "max@example.com",
  "title": 10,
  "RegistrationID": "AOP-554"
}
Request Parameters
Name Type Description
mobileno String Mobile number of the user, often used for verification or notifications.
lastname String User’s last name / surname.
firstname String User’s first name.
Responses

200

200

Response

200

RESPONSE BODY

object

status    boolean

response_code    integer

data    object

url     string

encdata     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/PanNewGenerate' \
--header 'Content-Type: application/json' \
--data  '{
  "mobileno": "99999999",
  "lastname": "Doe",
  "firstname": "John",
  "middlename": "Michael",
  "nep_key": "1234",
  "refid": "xyz24551",
  "domain": "google",
  "partnerId": "abc",
  "EmailID": "max@example.com",
  "Title": 10,
  "RegistrationID": "AOP-554"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/PanNewGenerate'
payload = json.dumps({
  "mobileno": "99999999",
  "lastname": "Doe",
  "firstname": "John",
  "middlename": "Michael",
  "nep_key": "1234",
  "refid": "xyz24551",
  "domain": "google",
  "partnerId": "abc",
  "EmailID": "max@example.com",
  "Title": 10,
  "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.aopay.co.in/api/AOP/PanNewGenerate',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "mobileno": "99999999",
    "lastname": "Doe",
    "firstname": "John",
    "middlename": "Michael",
    "nep_key": "1234",
    "refid": "xyz24551",
    "domain": "google",
    "partnerId": "abc",
    "EmailID": "max@example.com",
    "Title": 10,
    "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.aopay.co.in/api/AOP/PanNewGenerate')
var content = new StringContent(
  "{
    "mobileno": "99999999",
    "lastname": "Doe",
    "firstname": "John",
    "middlename": "Michael",
    "nep_key": "1234",
    "refid": "xyz24551",
    "domain": "google",
    "partnerId": "abc",
    "EmailID": "max@example.com",
    "Title": 10,
    "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.aopay.co.in/api/AOP/PanNewGenerate',
  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 =>  '{
    "mobileno": "99999999",
    "lastname": "Doe",
    "firstname": "John",
    "middlename": "Michael",
    "nep_key": "1234",
    "refid": "xyz24551",
    "domain": "google",
    "partnerId": "abc",
    "EmailID": "max@example.com",
    "Title": 10,
    "RegistrationID": "AOP-554"
  }',
  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,
  "data": {
    "url": "https://AOP.in/service-api/api/v1/service/pan/V2/validateurl",
    "encdata": "n3yEinKO0yaElP8WUZJ4L124mUzFx+k3wbihZ5Z98DXdzHxaERtOp0MXtqI3p5ydzjnTKyAbHOTr1nVmByHAu4CIk7Ncey+QbWPB27a6j5OLJ9JJp53p/c0BOrz8Xu05"
  },
  "message": "Encdata Successfully Generated"
}
                                
 
{
  "response_code": 6,
  "status": false,
  "message": "Authentication failed"
}