Some technical knowledge about webhooks is assumed. If you need help, contact our support team.
Difference between Webhooks and APIs
Unlike our APIs, where your external systems are requesting data from us, Webhooks are a way in which you can receive data from us when events occur in real-time.Basics
A Webhook is an HTTPS POST request to a URL of your choice, and any system which can accept an HTTPS request can be used to consume a Webhook from Mention Me. Any request your external system receives will:- Be an HTTP POST request (over SSL).
- Have data about an event which occurred in the body of the request. This data will be in the JSON format (you can see more in the Events section).
- (Optionally, if a Secret was set during setup) Have an HTTP Header with a signature for the webhook. This signature helps to validate the authenticity of the Webhook - you can read more in the Security section.
Next steps
Set up a webhook
Create a webhook destination and start receiving events.
Test a webhook
Send a test event to verify your endpoint is working correctly.
FAQs
Common questions about webhook delivery, retries and formats.