Pre-filled Loan agreement generation and E-sign
E-Sign API
This is used to generate a link that prefills all loan details in the loan agreement agreed. You can send this link to customers to E-Sign Loan agreement on your desired communication channels or you can use this in your In-app/Web Flow.
Once this link is clicked, an OTP is generated and sent to the customer’s registered mobile number for authentication.
The customer must enter the OTP sent and click on the check box to agree to the Loan agreement signing.
Once the loan agreement is signed, this gets uploaded in the Loan documents section.
API URL
{host)/v3/api/ui/esign
For the host
see URL docs
Field Description
Field Description
Field | Type | Description | Example |
---|---|---|---|
partner_loan_id | string | This contains the partner loan ID for the request that is being sent | ABCDE123456 |
partner_borrower_id | string | Borrower ID at partner's end | FSSL1903766 |
kudos_loan_id | Numeric | This contains the kudos loan ID for the request that is being sent, as was generated in the "Loan Request" API | 9834123321345 |
kudos_borrower_id | string | This contains the kudos borrower ID for the request that is being sent, as was generated in the "Loan Request" API | ASDTFKFIPP |
Request Body
{
"partner_loan_id": "Please enter partner loan id.",
"partner_borrower_id": "Please enter partner borrower id.",
"kudos_loan_id": "Please enter kudos loan id.",
"kudos_borrower_id": "Please enter borrower id."
}
Response
E-sign Response
{
"success": true,
"data": {
"url": "https://platformapi.kudosfinance.in/v3/ui/esign?kudos_loan_id=4543535&partner_loan_id_hash=5d53609782fsdfdsfsd21c75af2378c374adab948c85f174e03fc1afd85af44becb644eb3fsfdsfd"
}
}
{
"success":false,
"message": "Forbidden"
}
{
"success":false,
"message": "Forbidden Invalid company code"
}
Updated about 3 years ago