Setting up webhooks
Create a FeatureOS webhook and subscribe to the events you care about.
Webhooks are HTTP callbacks triggered when an event occurs in FeatureOS. When a
webhook fires, we send a POST request to your configured URL. If the request
fails, we retry it according to the webhook's retry policy.
Creating a webhook
You can also follow the Help Center article on using webhooks on FeatureOS.
- Open the Dashboard and click Webhooks in the sidebar.
- Click Add Webhook.
- Fill in the URL and a description, then select the events you want to be notified about.
- Click Save.
Endpoint requirements
Your webhook URL is a simple HTTP endpoint. It must:
- Have a valid SSL certificate (
https). - Be accessible on the public internet.
- Return a
200status code when the request is successful.
Note — If your endpoint does not return
200, the delivery is treated as failed and enters the retry flow.