Update webhook
documentedUpdate properties of an existing webhook.
PUT /v2/webhooks/{webhook_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://api.figma.com/v2/webhooks/{{$webhook_id}}" \
-X PUT \
-H "X-FIGMA-TOKEN: {{FIGMA_API_KEY}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"event_type": "{{$event_type}}", "endpoint": "{{$endpoint}}", "passcode": "{{$passcode}}", "status": "{{$status}}", "description": "{{$description}}"}'