Skip to main content
Webhooks allow your application to receive real-time notifications when events occur in your Gately project.

How Webhooks Work

  1. You register a webhook endpoint URL
  2. When an event occurs, Gately sends an HTTP POST request to your URL
  3. Your server processes the event and returns a 200 response

Creating a Webhook

Via Dashboard

  1. Navigate to Webhooks in your dashboard
  2. Click Create Webhook
  3. Enter your endpoint URL
  4. Select the events you want to receive
  5. Click Create

Via API

Webhook Payload

All webhook payloads include:

Security

Signature Verification

All webhooks include a signature header for verification:
Verify the signature to ensure the request is from Gately:

Best Practices

  • Always verify webhook signatures
  • Use HTTPS endpoints only
  • Respond quickly (within 30 seconds)
  • Process events asynchronously
  • Handle duplicate events idempotently

Retry Policy

Failed webhook deliveries are retried with exponential backoff: After 5 failed attempts, the webhook delivery is marked as failed.

Managing Webhooks

List Webhooks

Update Webhook

Delete Webhook

Testing

Send Test Event

View Delivery Logs