https://api.partners.stage.abhiloans.com/
creates single lead with submitted details of the user
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
mobileNumber
Registered contact number of the user. 10 digits
panNumber
Permanent Account Number (PAN) of the user
dateOfBirth
formatted as YYYY-MM-DD
1
{
"mobileNumber": "9999955555",
"panNumber": "DJXXXXXXXX",
"dateOfBirth": "1997-10-06"
}
Part 3 of a 3-step process. Get the eligibility data
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
requestId
Request ID received on the init call
1
Part 1 of a 3-step process. Trigger the process to check eligible loan amount of user. This will generate an OTP that will be received on the specified mobile number. In the next step (Eligibility: Verify), that OTP will be required. If an isDuplicate=true flag is received in the response, it indicates that a eligiblity request was made in the last 24 hours. The Eligibility: 3.GET call can be made directly using this requestId
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
panNumber
Permanent Account Number (PAN) of the user
mobileNumber
Registered contact number of the user. 10 digits
1
{
"mobileNumber": "9999955555",
"panNumber": "DJXXXXXXXX"
}
Part 2 of a 3-step process. Verify the OTP that was be received on the specified mobile number. This SHOULD NOT be used if the INIT response has an isDuplicate=true flag.
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
requestId
Request ID received on the init call
otp
Unique code received on the registered mobile number
1
{
"requestId": "cer_asbjsdfl34",
"otp": "123456"
}
Get the Login URL for abhiloans page
Authorization
The Authorization
header is used to authenticate with the API using your API key. Value is of the format Bearer YOUR_KEY_HERE
.
mobileNumber
Mobile Number to be used for login
1