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.
- Navigate to the “Dashboard” and then click on “Webhooks” in the sidebar.
- Click on the “Add Webhook” button.
- 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:
- It must have a valid SSL certificate (https).
- It must be accessible on the public internet.
- It should return a
200
status code when the request is successful._ - Click on the “Save” button.