Register Beneficiary

Post  https://api.bos.center/api/BOS/RegisterBaneficiary


Use this API to authenticate with the BOS system and obtain the authorization bearer token. All other API calls must have this token as Authorization header in the format 'Bearer' (without quotes) for them to get processed. The generated token is valid for 600 seconds.

Click to view the steps to generate a public key and the signature.

Body Parameters
{
"mobile": "98XXXXXX76",      
"benename": "XYZ ABCD",      
"bankid": "309",      
"accno": "5XXXXXXXXXXX2",      
"ifsccode": "HDFC0000XXX",      
"verified": "0",      
"gst_state": "07",      
"dob": "1990-03-02",      
"address": "New delhi",      
"pincode": "2XXXX6" 
}
                        
Responses

200

200

Response

200

RESPONSE BODY

Json

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.bos.center/api/BOS/RegisterBaneficiary' \
--header 'Content-Type: application/json' \
--data  '{
  "mobile": "98XXXXXX76",
  "benename": "XYZ ABCD",
  "bankid": "309",
  "accno": "5XXXXXXXXXXX2",
  "ifsccode": "HDFC0000XXX",
  "verified": "0",
  "gst_state": "07",
  "dob": "1990-03-02",
  "address": "New delhi",
  "pincode": "2XXXX6"
}'
                                
import requests
import json

url = 'https://api.bos.center/api/BOS/RegisterBaneficiary'
payload = json.dumps({
  "mobile": "98XXXXXX76",
  "benename": "XYZ ABCD",
  "bankid": "309",
  "accno": "5XXXXXXXXXXX2",
  "ifsccode": "HDFC0000XXX",
  "verified": "0",
  "gst_state": "07",
  "dob": "1990-03-02",
  "address": "New delhi",
  "pincode": "2XXXX6"
}) 

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.bos.center/api/BOS/RegisterBaneficiary',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: JSON.stringify({
    "mobile": "98XXXXXX76",
    "benename": "XYZ ABCD",
    "bankid": "309",
    "accno": "5XXXXXXXXXXX2",
    "ifsccode": "HDFC0000XXX",
    "verified": "0",
    "gst_state": "07",
    "dob": "1990-03-02",
    "address": "New delhi",
    "pincode": "2XXXX6"
  }) 
}; 
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.bos.center/api/BOS/RegisterBaneficiary')
var content = new StringContent(
  "{
    "mobile": "98XXXXXX76",
    "benename": "XYZ ABCD",
    "bankid": "309",
    "accno": "5XXXXXXXXXXX2",
    "ifsccode": "HDFC0000XXX",
    "verified": "0",
    "gst_state": "07",
    "dob": "1990-03-02",
    "address": "New delhi",
    "pincode": "2XXXX6"
  }",
  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.bos.center/api/BOS/RegisterBaneficiary',
  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 =>  '{
    "mobile": "98XXXXXX76",
    "benename": "XYZ ABCD",
    "bankid": "309",
    "accno": "5XXXXXXXXXXX2",
    "ifsccode": "HDFC0000XXX",
    "verified": "0",
    "gst_state": "07",
    "dob": "1990-03-02",
    "address": "New delhi",
    "pincode": "2XXXX6"
  }',
  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": {
        "bene_id": 900XXXX,
        "bankid": "309",
        "bankname": "HDFC BANK",
        "name": "XYZ ABCD",
        "accno": "5XXXXXXXXXXX2",
        "ifsc": "HDFC000XXX5",
        "verified": "0",
        "banktype": "ALL",
        "status": 1,
        "bank3": true
    },
    "message": "Receiver account successfully added."
}
                                
 
{
  "responsecode": 12,
  "status": false,
  "message": "Authentication failed"
}