Update venue
documentedUpdate an existing venue.
PATCH /venues/{venue_id}/Venuesno 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/venues/{{$venue_id}}/" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"venue": {"name": "{{$venue_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}}, "organizer_id": "{{$organizer_id}}", "age_restriction": "{{$age_restriction}}"} }'