Create Webhook
documentedCreates a new webhook.
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-ssl.bitly.com/v4/webhooks" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-d '{"is_active": {{$is_active}}, "organization_guid": "{{$organization_guid}}", "group_guid": "{{$group_guid}}", "name": "{{$name}}", "event": "{{$event}}", "url": "{{$url}}", "oauth_url": "{{$oauth_url}}", "client_id": "{{$client_id}}", "client_secret": "{{$client_secret}}", "fetch_tags": {{$fetch_tags}}}'