View webhook events available
GET /Webhook/GetEvents
Use this call to view the list of webhook events available for Arix. They are:
- AdjustmentActionUpdate
This webhook is sent when the details of a loan were updated after the loan was funded.
- FundingAttemptComplete
This webhook is sent when a funding attempt was completed.
Important: If you are sending multiple disbursements, wait for this webhook to arrive before you send the next /FundingInfo call.
- LoanStatusUpdated
This webhook is sent when the status of a loan changed. See Status updates.
- RailUpdated
This webhook is sent when a rail has been updated.
- ComplianceLoanFailed
This webhook is sent when a loan has failed compliance.
Request URL |
---|
https:// ... /Webhooks/GetEvents |
Sample request in cURL - GET /Webhook/GetEvents
curl --location --request GET 'https://arixapisandbox.crbnj.net/Webhooks/GetEvents' \
--header 'Accept: application/json' \
--header 'Cookie: ss-opt=temp; ss-id=mEaSEbdHkRyLhcNmkU4n; ss-pid=e3GIciSXVyIbH7UMaFfz'
Sample response in JSON - GET /Webhook/GetEvents
[
"AdjustmentActionUpdate",
"FundingAttemptComplete",
"LoanStatusUpdated",
"RailUpdated",
"ComplianceLoanFailed"
]
Updated 7 months ago
Did this page help you?