Webhooks

Setting up webhooks

Introduction

Webhooks are HTTP callbacks that are triggered when an event occurs on featureOS. When a webhook is triggered, we will send a POST request to the webhook's configured URL. If the request fails, we will retry the request according to the webhook's retry policy.

Creating a webhook

Follow the steps below to create a webhook. You can also refer to our Help Center article on using webhooks on featureOS.

  1. Navigate to the “Dashboard” and then click on “Webhooks” in the sidebar.
  2. Click on the “Add Webhook” button.
  3. Fill in the URL and description. Then select the events you want to be notified for. Your URL is a simple HTTP endpoint. It must satisfy the following conditions:
  4. It must have a valid SSL certificate (https).
  5. It must be accessible on the public internet.
  6. It should return a 200 status code when the request is successful._
  7. Click on the “Save” button.
Previous
Understanding webhooks