Testing Your Webhook
Before going live, always test your webhook integration:
Manual Test Using cURL:
curl -X POST https://api.dialora.ai/webhooks/agents/webh_7ejvxjh9lq6bdgwo/trigger \
-H "Content-Type: application/json" \
-d '{
"name": "Test Contact",
"phone": "+1555000001",
"notes": "Webhook test call"
}'Testing Checklist:
- Webhook URL is correct
- Phone number includes country code
- Contact name is provided
- JSON payload is properly formatted
- Headers include Content-Type: application/json
- Your agent receives and processes the call request