Sign in

Create venue

documented

Create a new venue.

POST /venues/Venuesno 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}}/venues/" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"venue": {"name": "{{$name}}", "address": {"address_1": "{{$address_1}}", "address_2": "{{$address_2}}", "city": "{{$city}}", "region": "{{$region}}", "postal_code": "{{$postal_code}}", "country": "{{$country}}"}, "latitude": "{{$latitude}}", "longitude": "{{$longitude}}", "capacity": {{$capacity}}}}'"