Sign in

Create event

documented

Create a new event under the specified organization.

POST /organizations/{organization_id}/events/Eventsno implementation yet0 runs
No 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/organizations/{{$organization_id}}/events/" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"event": {"name": {"html": "<p>{{$title}}</p>"}, "description": {"html": "<p>{{$description}}</p>"}, "start": {"timezone": "{{$timezone}}", "utc": "{{$start_utc}}"}, "end": {"timezone": "{{$timezone}}", "utc": "{{$end_utc}}"}, "currency": "USD", "online_event": {{$online_event}}, "venue_id": "{{$venue_id}}", "is_series": {{$is_series}}}}'"