Transaction Send OTP

Post  https://api.aopay.co.in/api/AOP/DMTV1/TransactionSendOtp


Send OTP for transaction will be only valid for 90 sec.

Body Parameters
{
  "MobileNumber": "99XXXXXX88",
  "BeneID": "60600077",
  "Txntype": "IMPS/NEFT",
  "Amount": "100",
  "Pincode": "110045",
  "Address": "Delhi",
  "DOB": "20/08/2000",
  "Latitude": "28.6090",
  "Longitute": "77.2362",
  "RegistrationID": "AOP-554"
} 
Request Parameter
Name Type Description
MobileNumber String The Mobile number of the user, often used for verification or notifications.
BeneID String The unique ID of the beneficiary registered under that sender. This ID is used for money transfers, deletion, or fetching beneficiary details.
Txntype String Type of Transaction – IMPS/NEFT for real-time and bundled money transfers, supported 24/7 by banks.
Responses

200

200

Response

200

RESPONSE BODY

object

status    boolean

response_code    integer

message    string

data    object

fname     string

lname     string

mobile     string

status     string

bank3_limit     integer

bank3_status     string

bank2_limit     integer

bank1_limit     integer

202

202

Response

200

RESPONSE BODY

object

status    boolean

response_code    integer

stateresp     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/DMTV1/TransactionSendOtp' \
--header 'Content-Type: application/json' \
--data  '{
  "MobileNumber": "99XXXXXX88",
  "BeneID: "60600077",
  "Txntype": "IMPS",
  "Amount": "100",
  "Pincode": "110045",
  "Address": "Delhi",
  "DOB": "20/08/2000",
  "Latitude": "28.6090",
  "Longitute": "77.2362",
  "RegistrationID": "AOP-554"
}'
                                
import requests
import json

url = 'https://api.aopay.co.in/api/AOP/DMTV1/TransactionSendOtp'
payload = json.dumps({
  "MobileNumber": "99XXXXXX88",
  "BeneID: "60600077",
  "Txntype": "IMPS",
  "Amount": "100",
  "Pincode": "110045",
  "Address": "Delhi",
  "DOB": "20/08/2000",
  "Latitude": "28.6090",
  "Longitute": "77.2362",
  "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/DMTV1/TransactionSendOtp',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
      "MobileNumber": "99XXXXXX88",
      "BeneID: "60600077",
      "Txntype": "IMPS",
      "Amount": "100",
      "Pincode": "110045",
      "Address": "Delhi",
      "DOB": "20/08/2000",
      "Latitude": "28.6090",
      "Longitute": "77.2362",
      "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/DMTV1/TransactionSendOtp')
var content = new StringContent(
  "{
      "MobileNumber": "99XXXXXX88",
      "BeneID: "60600077",
      "Txntype": "IMPS",
      "Amount": "100",
      "Pincode": "110045",
      "Address": "Delhi",
      "DOB": "20/08/2000",
      "Latitude": "28.6090",
      "Longitute": "77.2362",
      "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/DMTV1/TransactionSendOtp',
  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 =>  '{
      "MobileNumber": "99XXXXXX88",
      "BeneID: "60600077",
      "Txntype": "IMPS",
      "Amount": "100",
      "Pincode": "110045",
      "Address": "Delhi",
      "DOB": "20/08/2000",
      "Latitude": "28.6090",
      "Longitute": "77.2362",
      "RegistrationID": "AOP-554" 
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

202

401

-Result

Example

{
  "status": true,
  "response_code": 1,
  "message": "OTP has been send to the remitter mobile number.",
  "stateresp": "465185569",
  "Status": "True",
  "Value": "OTP has been send to the remitter mobile number."
}
                                
{
  "status": false,
  "response_code": 0,
  "stateresp": "b3c1e519-cf15-4145-8c26-c3d03e9d2f00",
  "message": "Remitter not registered OTP sent for new registration."
}
                                
{
  "response_code": 11,
  "status": false,
  "message": "Authentication failed"
}