Generate OTP

Get  https://api.bos.center/api/BOS/CibilScore/GenerateOTP


Generate OTP – Use Generate OTP API, In This API Customer will receive an OTP on registered Mobile No. It will authenticate the Customer.

Body Parameters
{
    "cibil_id": 102277100,
    "access_token": "123456542124"
    "RegistrationID": "BOS-554"
    "CompanyCode": "CMP1045"
}
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 --request GET 'https://api.bos.center/api/BOS/CibilScore/GenerateOTP' \
--header 'Content-Type: application/json' \
--data  '{
  "cibil_id": 102277100,
  "access_token": "123456542124"
  "RegistrationID": "BOS-554"
  "CompanyCode": "CMP1045"
}'
                                
import requests
import json

url = 'https://api.bos.center/api/BOS/CibilScore/GenerateOTP'
payload = "{
  "cibil_id": 102277100,
  "access_token": "123456542124"
  "RegistrationID": "BOS-554"
  "CompanyCode": "CMP1045"
}" 

headers = {
  "Content-type" : "application/json"
}

response = requests.request("GET", url, headers=headers, data=payload)

print (response.text)
                                
var requests = require("request");
var options = { 
  "method" : "GET",
  "url" : 'https://api.bos.center/api/BOS/CibilScore/GenerateOTP',
  "headers" : {
    "Content-Type" : 'application/json'
  },
  body: '{
    "cibil_id": 102277100,
    "access_token": "123456542124"
    "RegistrationID": "BOS-554"
    "CompanyCode": "CMP1045"
  }' 
}; 
request(options, function(error, response){
   if(error) throw new Error(error);
   console.log(response.body); 
}); 
                                
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get,'https://api.bos.center/api/BOS/CibilScore/GenerateOTP')
var content = new StringContent(
  "{
    "cibil_id": 102277100,
    "access_token": "123456542124"
    "RegistrationID": "BOS-554"
    "CompanyCode": "CMP1045"
  }",
  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/CibilScore/GenerateOTP',
  CURLOPT_RETURNTRANSFER =>  true,
  CURLOPT_ENCODING =>  '',
  CURLOPT_MAXREDIRS =>  10,
  CURLOPT_TIMEOUT =>  0,
  CURLOPT_FOLLOWLOCATION =>  true,
  CURLOPT_HTTP_VERSION =>  CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST =>  'GET',
  CURLOPT_POSTFIELDS =>  '{
    "cibil_id": 102277100,
    "access_token": "123456542124"
    "RegistrationID": "BOS-554"
    "CompanyCode": "CMP1045"
  }',
  CURLOPT_HTTPHEADER =>  array(
    'Content-Type: application/json'
  ),
));
$response =  curl_exec($curl);
curl_close($curl);
echo $response;
                                

RESPONSE

200

401

-Result

Example

{
"result": {
"cibil_id": "9362678", 
"cibil_status": "Pending",
"questions": {
"LastChanceQuestion": "false",
"FullQuestionText": "The One Time Password is sent to 94138****. Please enter the One Time Password.",
"AnswerChoice": {
"AnswerChoiceText": "The One Time Password is sent to 94138****. Please enter the One Time Password.",
"Key": "USER_TO_INPUT_ANSWER",
"AnswerChoiceId": "4220112750"
},
"Key": "1423489238",
"skipEligible": "false",
"resendEligible": "true"
},
"next_api_call": "cibil-verify-answers"
},
"status": "SUCCESS",
"message": "success",
"error_code": "SPC-200",
"merchant_trans_id": "SPCBL2308181502437743aQaHNGxZM"
} 

                                
{
    "code": "207",
    "description": "Amount is Requaired",
    "merchantTrxnRefId": null,
    "token": null,
    "status": "False"
}