Recharge Status

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


In this API, you will provide the transaction reference along with the user’s registration details to retrieve the current status or outcome of a previously initiated request. The response will confirm whether the transaction was successful, pending, or failed.

Body Parameters
{ 
    "referenceid":"12345678" ,
    "RegistrationID": "AOP-554"
} 
Request Parameters
Name Type Description
Referenceid String A unique identifier used to track or reference a specific transaction, request, or process. In this case, "12345678" could be an order ID, payment ID, or service request ID.
RegistrationID String Unique registration identifier, often tied to the user.
Responses

200

200

Response

200

RESPONSE BODY

object

response_code    integer

status    boolean

data    object

txnid     string

operatorname     string

canumber     string

amount     string

comm     string

tds     string

status     string

refid     string

operatorid     string

dateadded     string

refunded     string

refundtxnid     string

daterefunded     string

message    string

401

401

Response

401

RESPONSE BODY

Object

status boolean

response_code 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/RechargeStatus' \
--header 'Content-Type: application/json' \
--data  '{
  "referenceid": "12345678",
  "RegistrationID": "AOP-554"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/RechargeStatus'
payload = json.dumps({
  "referenceid": "12345678",
  "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/RechargeStatus',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "referenceid": "12345678",
    "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/RechargeStatus');
var content = new StringContent(
  "{
    "referenceid": "12345678",
    "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/RechargeStatus',
  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 =>  '{
    "referenceid": "12345678",
    "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,
  "data": {
    "txnid": "6469",
    "operatorname": "ICICI Bank",
    "canumber": "DL10CG6228",
    "amount": "1",
    "comm": "0.00",
    "tds": "0.00",
    "status": "1",
    "refid": "12345678",
    "operatorid": "MockLazYafrYZ7",
    "dateadded": "2021-08-20 15:41:08",
    "refunded": "0",
    "refundtxnid": "",
    "daterefunded": null
  },
  "message": "Transaction Enquiry Successful"
}
                                
{
  "status": false,
  "response_code": 7,
  "message": "Invalid signature encoding"
}