Skip to main content
Before going live with a webhook integration, you can send a test event from the Mention Me dashboard to verify your endpoint receives and processes webhook payloads correctly. Test deliveries use the same HTTP client, headers, HMAC signing, and timeout as production deliveries, so a successful test confirms your integration will work in production.

Sending a test event

1

Open the Webhooks page

Navigate to Connections Hub and find the webhook destination you want to test.
2

Open the actions menu

Click the menu on the webhook destination row, then choose Send test.
3

Choose an event type

In the modal that appears, select which event type you would like to test from the dropdown. Only events that the destination is subscribed to are shown.
4

Send the test

Click Send test. Mention Me will send a sample payload to the destination URL and report the result.

Understanding the result

After sending a test, you will see one of three outcomes:
OutcomeWhat it means
Success (2xx response)Your endpoint received the payload and responded successfully. The integration is working.
Warning (non-2xx response)The test reached your endpoint, but it returned an error (e.g. 400, 500). Check your endpoint’s logs to diagnose the issue.
Error (transport failure)The request never reached your endpoint. Common causes include DNS resolution failure, connection refused, TLS certificate errors, or a request timeout.

How test deliveries differ from production

Test payloads are nearly identical to production deliveries. The key differences are:
  • An X-MentionMe-Test: true header is included so your system can distinguish test events from real ones.
  • The payload uses sample data rather than real customer data.
  • Responses are captured and reported back to you in the dashboard. Production deliveries do not surface response details.
If you configured a Secret on this destination, the test payload is HMAC-signed with the same Secret. You can use a test delivery to verify your signature validation logic is working correctly.

Rate limiting

Test sends are rate-limited to 10 per minute per user per destination. If you exceed this limit, wait a moment before trying again.

Troubleshooting

ErrorSuggested action
DNS resolution failedVerify the destination URL hostname is correct and publicly resolvable.
Connection refusedConfirm your endpoint is running and accessible from the internet. Check firewall rules.
TLS errorEnsure your endpoint has a valid, non-expired SSL certificate from a trusted certificate authority.
TimeoutYour endpoint must respond within 10 seconds. Check for slow processing or network issues.
Blocked URLThe destination URL must use HTTPS and resolve to a public IP address. Private, loopback, and link-local addresses are not permitted.

Next steps

Events

See which webhook events are available and their payload formats.

Security

Verify webhook signatures to ensure authenticity.
Last modified on June 18, 2026