cred.loan.application_filled
cred.loan.application_filled
Section titled “cred.loan.application_filled”Overview
Section titled “Overview”The cred.loan.application_filled webhook event is triggered when the customer has completed filling in the loan application form.
Payload
Section titled “Payload”| Attribute | Type | Description |
|---|---|---|
event_id | String | A unique identifier for the webhook event. |
event | String | The event type; in this case, “cred.loan.application_filled” |
timestamp | Integer | The Unix timestamp when the event was originated. |
version | String | The version of the webhook payload format (here, “1.0”). |
payload | Object | Detailed information about the event. |
payload.jodo_student_id | Integer | The ID of the student in the JODO system. |
payload.student | Object | Information about the student. |
payload.student.identifier | String | The student’s identifier within your system (if applicable). |
payload.student.custom_identifier | String | A custom identifier associated with the student. |
payload.student.collector_code | String | Branch code (if applicable). |
payload.student.academic_year_start | Integer | The start year of the student’s academic year. |
payload.student.academic_year_end | Integer | The end year of the student’s academic year. |
payload.student.grade | Object | Information about the student’s grade. |
payload.student.grade.name | String | The name of the grade (e.g., “Montessori 1”). |
payload.student.grade.code | String | The code representing the grade (e.g., “M1BLUE”). |
payload.application | Object | Information about the loan application. |
payload.application.id | Integer | The unique loan id in JODO system. |
payload.application.status | String | The current status of the loan application. |
Example
Section titled “Example”{ "event_id": "9f86df27-d3c4-44c1-964a-c33d4733a316", "event": "cred.loan.application_filled", "timestamp": 1692008791, "version": "1.0", "payload": { "jodo_student_id": 7257, "student": { "identifier": "JODO/TEST/003", "custom_identifier": null, "collector_code": "81c6b473c138", "academic_year_start": 2022, "academic_year_end": 2023, "grade": { "name": "Class I", "code": "fdb97be4" } }, "application": { "id": 1227, "status": "application_filled" } }}Handling the Event
Section titled “Handling the Event”Upon receiving the cred.loan.application_filled event, you can update your systems to record that the student has submitted their loan application.