Quote
You can create loan product quote with basic details use them for applying loan.
Create Quote
You can create a quote via API.
Request
field | type | required/optional | desc |
---|---|---|---|
string | required | Email of Applicant | |
Mobile | string | required | Mobile Number of Applicant |
CourseId | integer | required | Propelld Course Id |
InstituteId | integer | optional | Propelld Institute Id that is mapped with your branch/center. If you have multiple branch/centers, this is compulsory to pass. |
FirstName | string | required | First Name of Applicant |
LastName | string | optional | Last Name of Applicant |
DiscountedCourseFee | integer | required | Discounted Course Fee |
LoanAmount | integer | optional | Loan Amount for the quote. If not provided, max financing amount for discounted course fee is considered |
Tenor | integer | optional | Tenor of loan in months . If not provided, default tenor of the propelld product is considered |
Moratorium | integer | optional | Moratorium period of loan in months . If not provided, default moratorium of the propelld product is considered |
ReferenceNumber | string | optional | Any reference number from user for referential purpose |
RedirectUrl | string | optional | Redirection url after loan completion |
Notes | object | optional | json object Contains user-defined fields, stored for reference purposes. |
ParentName | string | optional | Name of Parent |
ParentMobileNumber | string | optional | Mobile Number of Parent |
ParentEmail | string | optional | Email Id of Parent |
Response
field | type | desc |
---|---|---|
QuoteId | string | Unique Id for each quote creation |
RedirectionUrl | string | Redirection url for loan application creation |
Example
{
"CourseId": 0,
"FirstName": "string",
"LastName": "string",
"DiscountedCourseFee": 0,
"LoanAmount": 0,
"Tenor": 0,
"Moratorium": 0,
"Email": "string",
"Mobile": 0,
"ReferenceNumber": "string",
"RedirectUrl": "string",
"Notes": {
"Key": "Value"
}
}
{
"QuoteId": "string",
"RedirectionUrl": "string"
}
Approve/Reject Quote
You can approve or reject quote using this API.
Request
field | type | required/optional | desc |
---|---|---|---|
QuoteId | string | required | Unique Id of the quote |
Approved | boolean | required | Approval status of quote. Set true to approve and false to reject |
Response
field | type | desc |
---|---|---|
StatusUpdated | boolean | Quote Status updated or not |
Example
{
"QuoteId": "string",
"Approved": true
}
{
"StatusUpdated": true
}
EMI Details
You can get EMI details for a given Course and Loan amount.
Request
field | type | required/optional | desc |
---|---|---|---|
CourseId | integer | required | Propelld Course Id |
LoanAmount | integer | required | Loan Amount |
Response
field | type | desc |
---|---|---|
MonthlyEmiWithDecimals | float | Exact Emi in decimals |
EmiTenor | integer | Tenure of Loan |
MonthlyEmi | integer | Monthly EMI (Rounded off) |
MoratoriumPeriod | integer | Moratorium period |
MoratoriumEmi | integer | MOratorium Emi (Rounded off) |
MoratoriumEmiWithDecimals | float | Exact Moratorium Emi in decimals |
LoanProductId | integer | Loan Product Id of Propelld |
Example
{
"CourseId": 433,
"LoanAmount": 50000
}
[
{
"MonthlyEmiWithDecimals": 4071.9643,
"EmiTenor": 14,
"MonthlyEmi": 4072,
"MoratoriumPeriod": 4,
"MoratoriumEmi": 500,
"MoratoriumEmiWithDecimals": 500,
"LoanProductId": 476
}
]