Create a webhook
documentedCreate a webhook for real-time notifications.
POST /v4/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://api.kit.com/v4/webhooks' \
-X POST \
-H 'Content-Type: application/json' \
-H 'X-Kit-Api-Key: {{KIT_API_KEY}}' \
-d '{\"target_url\": \"{{$target_url}}\", \"event\": {\"name\": \"{{$event_name}}\", \"form_id\": {{$form_id}}, \"tag_id\": {{$tag_id}}, \"sequence_id\": {{$sequence_id}}, \"product_id\": {{$product_id}}, \"initiator_value\": \"{{$initiator_value}}\", \"custom_field_id\": {{$custom_field_id}}}}'"