Create webhook
documentedRegister a webhook to receive event notifications (e.g., new reply, survey completed).
POST /webhooksWebhooksno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
npx -y keychains@latest curl "https://feedback.callexa.com/api/v1/webhooks" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "X-Api-Key: {{FEEDBACK_API_KEY}}" \
-d '{"url": "{{$webhook_url}}", "events": ["{{$event_1}}", "{{$event_2}}"], "description": "{{$description}}", "active": {{$active}} }'