Skip to main content

Setting Up Webhooks

1

Access Webhook Settings

Log into your Urtentic Dashboard, navigate to Integrations, and click Webhooks
2

Configure Endpoint

  • Endpoint URL: Your HTTPS endpoint (e.g., https://api.yourapp.com/webhooks/urtentic)
  • Secret Key: Auto-generated or custom webhook secret
  • IP Whitelist: Optional IP address restrictions
3

Test Connection

Click Test Endpoint, review the test payload, verify your endpoint responds with HTTP 200, and check signature verification

Implementing Webhook Endpoints

Monitoring & Maintenance

Webhook Health Monitoring

Monitor your webhook endpoint health:
  • Response Times: Track webhook processing performance
  • Success Rates: Monitor delivery success percentages
  • Error Patterns: Identify common failure modes
  • Retry Frequency: Track how often retries are needed

Logging Best Practices

Scaling Considerations

Queue Processing

Use message queues (RabbitMQ, SQS) for webhook processing

Load Balancing

Distribute webhook traffic across multiple servers

Database Optimization

Optimize queries for webhook handlers

Caching

Cache frequently accessed data to improve performance