Sign in

Update display settings

documented

Update an event's display settings.

POST /events/{event_id}/display_settings/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/events/{{$event_id}}/display_settings/" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"display_settings": {"title": "{{$title}}", "description": "{{$description}}", "logo_id": "{{$logo_id}}", "hide_description": {{$hide_description}}, "hide_short_description": {{$hide_short_description}}, "hidden_fields": ["{{$hidden_field1}}", "{{$hidden_field2}}"]}}'