Table of Contents

How to: Using Webhooks in Sonar

Mitchell Paul-Soumis Updated by Mitchell Paul-Soumis

Read Time: 6 mins

If you've been using Sonar and exploring the various features on offer, you'll likely have encountered the different articles provided in the knowledge base describing the usage of Sonar's GraphQL API integration to manage the data being entered into Sonar. Webhooks serve a kind of inverse functionality to the API. While the API can be used to trigger certain actions within the instance (such as creating a serviceable address), a webhook is specialized in triggering an action outside of Sonar (such as automatically sending a letter to a customer through some 3rd party service when their account is created).

In this article, the functionality of webhooks in Sonar will be explored, and examples surrounding the usage of webhooks to enhance your experience within Sonar.

How to Use Webhooks

When creating a webhook, you need to select an endpoint. The endpoint you enter when configuring a webhook is the location Sonar will POST data to, and you select from the list of webhook events to determine which webhooks are posted to the specified endpoint.

The web server receiving the webhook MUST support both the HTTP HEAD and POST methods.

When Sonar POSTs a webhook to an endpoint, it expects to receive an “HTTP 200” response code. The data returned is not relevant (or stored) but if the endpoint does not return an “HTTP 200” response code, Sonar will continue to POST to the endpoint once per minute for 4 hours. After 4 hours have passed, all super admins registered in Sonar will receive an email letting them know a webhook is failing.

The format of POSTed webhook data is JSON and is as follows:

{
"event": "event.name",
"object_id": 1,
"current": {
"created_at": "2021-05-25T20:48:40+00:00",
*some content and details regarding the event*
}
}

The event name will correspond to the event registered in Sonar. For example, an account changing status is account.status; an account having a new service added is account.service.add. The object ID will be the ID of the top-level entity referenced in the event. For example, in account.service.add, the top-level entity is account, so object_id will be the ID of the account.

The “current” array may or may not contain data, but each array is detailed in this format. The “current” array generally contains some data about the event that may be useful for you to process the webhook. It may be necessary to open the Event History sidebar and view the payload to gather exact details.

Finally, created_at is a UTC timestamp showing when the webhook was entered into Sonar for delivery. Because Sonar will retry webhooks over a 4-hour period, it is possible that you can receive webhooks out of order if one fails, but the next succeeds before the retry cycle on the failed item. Therefore, if you must receive webhooks in order, you should store the created_at value for the last event of a specific type for a specific entity so that you can deal with any out-of-order broadcasts.

For example, account status changing is probably important to receive in order if you alter a customer's internet access based on it.

You will never receive out-of-order webhooks as long as your endpoint is online and responding with an “HTTP 200” response code, but interruptions in communication between Sonar and your endpoint can also cause problems.

Please note; these webhooks are provided as a tool that can be used to extend Sonar for your purposes. We will provide support in terms of expected behavior and data format for these webhooks, but will not provide support in troubleshooting your own custom code that utilizes these webhooks.

If you need any clarification regarding the expected behavior or data format for webhooks, if you find any bugs, or have any suggestions, please feel free to contact us at support@sonar.software.

Creating a New Webhook

To make use of webhooks in Sonar, or tie them to applications outside of Sonar, they need to be created. To do that, follow the steps below:

  1. Click on "Settings"
  2. Expand "Integrations"
  3. Select "Webhook Endpoints"
  4. Click on "Create Webhook Endpoint"
Field Breakdown for Creating a Webhook Endpoint
When creating a webhook, there are several fields to fill out in order to complete the event connection. This section will elaborate on those required fields, and what they mean:

1. The name of the webhook being created will go here - this should be indicative of both the Trigger Events and the linked service for easier management in the future.

2. The URL entered here is the recipient of the webhook, and will usually be given to you by your service provider.

3. The enabled checkbox will allow you to activate or deactivate the particular webhook.

4. The "Triggers" drop-down allows you to define the event categories that will trigger the webhook action.

5. The events listed here combine with the defined trigger. For example, combining "Account" as the Trigger with "Update" as the event will result in the webhook triggering on any Account Update.

6. The "Add Events" button will take the trigger and events and add them to the webhook. You can connect multiple events to each webhook.

7. Once you've added the events and triggers to the webhook, clicking "Create" will finalize the process and add the webhook to your instance.

Once a webhook has been created, it appears in the table and shows the webhook name, whether the webhook is enabled, how many individual events are tied to the webhook, and by clicking on "Event History" followed by the arrow next to the specific event, a sidebar will appear with details about the payload that was sent.

The logs in the sidebar will also record when the webhook was last triggered, and the reply that was received from the webhook recipient.

Webhook Examples

While testing webhook examples, you can use https://webhook.site to test and process the webhooks and HTTP requests.

Basic Configuration Example

In this first example, we'll be using Wikipedia as the destination for the webhook that's being created. Wikipedia is a good tool for this because it will always accept the webhook input and return a "200" HTML code. In this example, the webhook will trigger any time an account is created or deleted. Let's create this webhook.

  1. Open the Webhook Creation modal by going to Settings → Integrations → Webhook Endpoints and clicking on "Create Webhook Endpoint"
  2. Within the modal, we'll set the Webhook Name and URL
    The Name and URL fields are the only ones required by Sonar to complete the creation of a Webhook Endpoint, however, without adding Triggers, this webhook will have no functionality.
  3. Next, we'll set the Trigger, and Trigger Events:
  4. Once the Trigger and Events are added, they'll appear in the list, and we can click on "Create"

Basic PHP Example

Through the article linked below, you will find an example of a basic webhook receiver that you could host on a server to get webhooks from Sonar.

Webhooks in Sonar: Basic PHP Example

How did we do?

Vetro FiberMap Integration: Overview

CrowdFiber Integration

Contact