Fetch Consumer Details

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


In this API, you will pass the operator, canumber, and RegistrationID as request parameters while initiating the request. These parameters are essential to identify the service operator, the account number or consumer number, and the user's registration reference. Once the request is submitted with these values, the response will return the relevant status or details associated with the transaction or service being accessed.

Body Parameters
{
    "operator":311,
    "canumber":"DL12CB4685",
    "RegistrationID":"AOP-554"
}  
Request Parameters
Name Type Description
operator Int Numeric code representing the service provider or operator.
canumber String Consumer Account Number – In this case, "DL12CB4685" represents a unique ID for a vehicle (e.g. license plate).
RegistrationID String Unique registration identifier, often tied to the user.
Responses

200

200

Response

200

RESPONSE BODY

object

response_code    integer

status    boolean

amount    string

name    string

duedate    string

bill_fetch    object

billAmount     string

billnetamount     string

dueDate     string

maxBillAmount     string

acceptPayment     boolean

acceptPartPay     boolean

cellNumber     string

userName     string

message    string

401

401

Response

401

RESPONSE BODY

Object

status boolean

responsecode integer

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/FetchConsumerDetails' \
--header 'Content-Type: application/json' \
--data  '{
  "operator": 311,
  "canumber": "DL12CB4685",
  "RegistrationID": "AOP-554"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/FetchConsumerDetails'
payload = json.dumps({
  "operator": 311,
  "canumber": "DL12CB4685",
  "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/FetchConsumerDetails',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "operator": 311,
    "canumber": "DL12CB4685",
    "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/FetchConsumerDetails')
var content = new StringContent(
  "{
    "operator": 311,
    "canumber": "DL12CB4685",
    "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/FetchConsumerDetails',
  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",
    "RegistrationID": "AOP-554"
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

-Result

Example

{
  "response_code": 1,
  "status": true,
  "amount": "1000.0",
  "name": "NITESH  KUMAR SHARMA",
  "duedate": "2021-09-20",
  "bill_fetch": {
    "billAmount": "1000.0",
    "billnetamount": "1000.0",
    "dueDate": "2021-09-20",
    "maxBillAmount": "1000",
    "acceptPayment": true,
    "acceptPartPay": true,
    "cellNumber": "DL12CB4685",
    "userName": "NITESH  KUMAR SHARMA"
  },
  "message": "Bill Fetched Success."
}
                                
 
{
  "status": false,
  "response_code": 10,
  "message": "Signature verification failed"
}