Update webhook subscription
documentedUpdates a webhook subscription.
PUT /v2/webhooks/subscriptions/{subscription_id}Webhooksno 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://connect.squareup.com/v2/webhooks/subscriptions/{{$subscription_id}}" \
-X PUT \
-H "Square-Version: 2026-01-22" \
-H "Authorization: Bearer {{SQUAREUP_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"subscription": {"name": "{{$name}}", "enabled": {{$enabled}}, "notification_url": "{{$notification_url}}", "event_types": {{$event_types}}, "api_version": "{{$api_version}}"}}'