Overview
Webhooks in VIP are a tool for generating real-time feedback and providing suggested changes to users as they work in the Voyage Estimator. Like Tasks & Alerts, messages are generated and displayed in the notifications panel based on logical rules applied to the current data. Unlike standard Tasks & Alerts, webhooks allow you to write whatever logic you choose in a programming language of your choice, as long as you can host it as a web endpoint. The response payload may also include suggested changes that can be automatically applied to the estimate itself.
Setting up a webhook in the Tasks & Alerts form
To set up a webhook, go to the Tasks & Alerts Rule Set List in the Data Center module and create a new Rule Set that applies to the Voyage Estimate. In the Edit Rules form, select the Use Webhook checkbox.
...
Info |
---|
If you only want to run a webhook conditionally, you can use the “stop processing if true” feature of Tasks & Alerts. Create a non-webhook rule that has the condition before the webhook rule in the same rule set. |
Running your webhook
To run your webhook, navigate to Estimates in the Chartering module and open an estimate in details view. Then, expand the Notifications panel. In this panel, you will see the response message that is returned by the webhook.
...
The cards will be split into different sections based on the type of rule they are generated from (Tasks, Alerts or Webhooks). These sections can be expanded/collapsed by clicking on the down/up carrot at the top of each section, and can be rearranged by the user so that the highest priority items are present at the top of the panel.
Card Details
The Webhook Card in the Notifications panel has a standard structure to it:
...
This form will show the technical details of what was sent to the webhook endpoint in the Requestand what was returned from the webhook endpoint in the Response.
Specification
Whenever a user makes a change in Estimator, the current state of the estimate will be serialized to JSON and POSTed to each configured webhook endpoint. The configured endpoints must use HTTPS and provide a certificate trusted by a common root CA. The response payload must be returned in less than 10 seconds, and the content length must be less than 1MB.
Authentication
If an API key is specified in the webhook configuration, a Veson-Webhook-Signature
header is included with each HTTP POST request. The value of the header is the HMACSHA256 signature of the request body (as UTF8 Bytes) with the API key string (as UTF8 bytes) as the key.
Expand | ||
---|---|---|
| ||
|
Request Format
The request includes the fields configured in the webhook setup, as per the VIP Reporting schema, serialized as JSON.
Expand | ||
---|---|---|
| ||
|
Response Format
The expected response is a JSON blob consisting of an array of alert objects. An alert object can have the following fields:
...