Loan Application
Events
Event name | Description |
---|---|
loan_application_created | When a student begins a loan application. |
loan_application_updated | When any attribute changes on the loan application. |
Example response:
{
"webhook": "loan_application_created",
"payload": {
"id": 12345,
"student_first_name": "John",
"student_last_name": "Smith",
"deposit_amount_in_pence": 10000,
"loan_amount_in_pence": 240000,
"merchant_fee_in_pence": 5000,
"lead_fee_in_pence": 5000,
"status": "funded",
"student_email": "[email protected]",
"student_phone": "+447070123454",
"received_at": "2022-06-22T18:05:43Z",
"course": {
"id": 987,
"name": "Example Course",
"price_in_pence": 250000,
"currency": "£",
"code": "example_code"
}
}
}