Webhooks configuration
Step 1: Accessing Webhook Settings
Log in to the platform and navigate to the Settings section in the side menu.
In Settings, you will find an input field labeled URL. Enter the webhook URL here, where you would like to receive notifications.
Step 2: Selecting Tables to Listen For
Just below the URL input, you’ll find the Select Tables for Webhook field.
In this field, select the tables you wish to listen to. These tables represent the data updates you are interested in receiving through the webhook.
Step 3: Receiving Data Updates
Once you have configured the webhook URL and selected the tables, any updates to these tables will trigger a notification to your webhook. You can then use Shield API to retrieve the specific data that has been updated, ensuring accurate and real-time integration. Once the webhook is configured, any update in the selected tables will trigger a notification with the following information:
type: Indicates whether the record was inserted or updated.
id: The unique identifier of the affected record.
Step 5: Example response
Example Response Explanation
The message
field is constructed as follows:
Where:
table
can be one of the following values:claims
risk_items
claims_events
orders
actionMessage
can be:updated
inserted
Examples
If
table
= "claims" andaction
= "updated", the message will be:"A claims was updated."
If
table
= "orders" andaction
= "inserted", the message will be:"A orders was inserted."
Risk Item response
Claims response
Claims events response
Orders response
Note: The id
in this response refers to the associated Risk Item rather than the order itself.
Last updated