Update event
documentedUpdate an existing event.
POST /organizations/{organization_id}/events/{event_id}/Eventsno 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://www.eventbriteapi.com/v3/events/{{$event_id}}/" \
-X POST \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"event": {"name": {"html": "{{$title}}"}, "description": {"html": "{{$description}}"}, "start": {"timezone": "{{$start_timezone}}", "local": "{{$start_local}}", "utc": "{{$start_utc}}"}, "end": {"timezone": "{{$end_timezone}}", "local": "{{$end_local}}", "utc": "{{$end_utc}}"}}'"