Lending

Hook notifications

27min

Overview

Hooks is a notification system, used by Arix, to update you on the status of your loan. Hooks report to your system with real-time notifications when an event happens on Arix. You have to register to receive hooks for each relevant event type by configuring the destination and delivery method, most commonly webhooks. When that event occurs, a Hook is triggered and reports the updates to your system via the chosen delivery method.

For example, if a rail status changes to returned, a RailUpdated hook event would be triggered, and reported to the partner notifying them of the event. This notification will only be sent out, if you have previously registered to receive this type of event (RailUpdated), and the registration is active.

IMPORTANT To access the links below you must have the following IP addresses allowlisted:

Sandbox - 66.206.202.39 , 66.206.202.12

Production -66.206.202.62 , 66.206.202.15

By default, a webhook that fails will retry 3 times with a delay interval of 5 minutes. Different Intervals can be configured for a registration by the CR support team.

Events can also be resent manually via the hooks UI, although there is a retention policy of 60 days for events in the system.

Sample Events

LoanStatusUpdate

This event is reported every time the status of a loan is changed.

JSON


ComplianceLoanFailed

This event is reported every time the loan fails to pass all compliance checks.

JSON


RailUpdated

This event is reported when there is a status update to a rail that was requested

JSON


POST /Hooks/v2/Registrations

Use this call to:

  • Create a registration to hook events
  • Edit a hook registration
  • Restart a registration if it is suspended

Request URL https:// .../Hooks/v2/Registrations

Editing a Registration

To edit an existing registration, use the same API endpoint as for creating a registration.

How It Works

  • Include the ID of the registration in the POST request to modify an existing entry.
  • The API automatically determines whether to create or update a registration based on:
    • MPLID
    • hookName
  • If a registration already exists for the given MPLID/hookName combination, the API will update it instead of creating a new one.
  • If no matching registration is found, a new one will be created.

When editing a registration via the UI, any stored passwords or tokens will be shown hashed on the UI. For security reasons, You will need to re-enter these credentials when modifying the registration.



Sample request in cURL - POST /Hooks/v2/Registrations

In the request below, hookName shows the event registered as LoanStatusUpdated.

Curl


Duplication Registrations

The default behavior for hooks registration, is to either create or update the registration based on the MPLID and the hookName, assuming there is only one registration per combination of Mplid/hookName. In certain use cases, you might want to create two registrations for the same event. For example, one web hook, and one email hook. To do this, you need to supply a new Guid for the Id field of the registration.

Webhook attributes

Attribute

Description

Id

string

This field can be null or populated with the registration GUID for the registration.

null - when creating a new registration

GUID - when updating or unsuspending an existing registration

applicationName

string

Should always be Cos.Lending

hookName

string

The name of the hook you want to register for:

- LoanStatusUpdated

- ComplianceLoanFailed

- RailUpdated

hookCorrelationId

string

3-letter MPL ID

suspended

boolean

True or false.

True if the registration should be suspended and not send webhooks. False if the registration should be active.

If you edit a suspended registration, false will restart the registration.

options

object

Select the relevant values for the fields below.

options.hookType

Delivery method for the event (enum).

Select from:

- Web (for webhooks)

- Email

- Slack

- Message (coming soon)

- RabbitMq (coming soon)

- Sqs (coming soon)

options.httpMethod

string

POST

options.uri

string

The URL to receive webhook events/

options.headers

string array

Key/Value pairs of Headers and values. Each header can have an array of values:

"Headers": {

"FirstHeader": [

"test1",

"test2"

],

"secondHeader":["single value"]

}

options.authenticationOptions

object

Authentication options for web hooks.

Select from:

- None

- Basic

- oidc

Sample response in JSON - POST /Hooks/v2/Registrations

Use the id received in the response to update or restart the registration.

JSON


Webhooks without Authentication

JSON


Webhooks with Basic Authentication

JSON


Webhooks with OIDC Authentication

OpenID Connect using your own authentication authority.

OIDC setup must be implemented first

Your OIDC must be fully implemented in order to use Hooks notifications with OIDC authentication. This includes setting up a discovery endpoint /.well-known/openid-configuration

JSON


Slack hook registration

Hook events can also be sent to your slack channels. To do this you must:

  1. Create a slack bot with permissions to write to a channel in your workspace.
  2. Retrieve the auth token of the slackbot.
  3. Add the slackbot to the slack channel that you wish to register.
  4. Register the channel to receive events on the Cos.Lending.Hooks UI, or via the API payload below.

IMPORTANT Registering to a slack channel is not recommended if automation is needed. For complete automation, it is recommended to use "web" hooks instead.



JSON


Email hook registration

Hook events can also be sent to your Email address, or group email address.

  1. Register the channel to receive events on the Cos.Lending.Hooks UI, or via the API payload below.

IMPORTANT Registering to receive events via email is not recommended if automation is needed. For complete automation, it is recommended to use "web" hooks instead.



JSON


Testing webhook registration

To test registering webhooks, configure a URL for the specific event you are registering to. If a URL is not yet available, then you can use the webhook.site as a temporary test solution. Follow these instructions to test the webhooks.

To register your URL to receive webhook events:

  1. Click New on the top menu. The site returns Your unique URL.
  2. Copy to clipboard your unique URL.

If you already have other webhooks registered, the browser might automatically direct you to the URL you've used.

Document image




4. Paste the copied URL into the options.uri field of the JSON body.

5. Send the Registration API call with hook type "web" to register for webhooks.

The response field Result.id is the RegistrationId of the event. You can find the registration ID with the call GET Hooks/v2/Registrations.

Repeat the process for each event that you want to register for.

DELETE /Hooks/v2/Registrations

Request URL https:// .../Hooks/v2/Registrations

Use this call to unregister any hook event you are registered to.

Sample request in cURL - DEL /Hooks/v2/Registrations

Curl


Required query parameter

Parameter name

Parameter type

Data type

Description

id

query

long

The registration ID of hook registration to remove

Sample response in JSON - DEL /Hooks/v2/Registrations

There is no response in the image below because the hook registration was deleted successfully.

Document image


You can use the Arix test collection in Postman to practice unregistering from an event:

  1. In the Postman collection, Delete Registration click the tab, Params.
  2. In the KEY field, enter id .
  3. In the VALUE field, enter the registration ID number that you received when you registered to the event.
  4. Click Send.