API Method venue_update
This method updates an existing venue. Only the fields passed as arguments will be modified. It returns the ID of the updated venue.
Request Parameters
| Name | description |
|---|---|
| id | The venue ID. |
| name | The venue name. |
| address | The venue address (line 1). |
| address_2 | The venue address (line 2). |
| city | The venue city. |
| region | The venue state/province/county/territory depending on the country. 2-letter state code is required for US addresses. |
| postal_code | The postal code of the venue. (optional) |
| country_code | The venue country code. ISO-3166-1 alpha-2 format (e.g., “US”). |
Example Request URL
https://www.eventbrite.com/xml/venue_update?...&id=2123424 &venue=My+New+House
Example Response
<?xml version="1.0" encoding="utf-8" ?> <venue> <id>908163459</id> <status>ok</status> <message>venue_update : complete</message> </venue>
Method-Specific Errors
More information about error-handling and common error messages are available in our error docs.
| error_type | error_message |
|---|---|
| Authentication Error | The specified user was not found or the login credentials didn’t match. |
| Not found | The specified venue ID is unknown. |
| Venue error | The venue ID is missing. |
| Venue error | This venue ID does not belong to the current user. |
| Venue error | The venue name is missing. |
| Venue error | The specified venue name already exists for the current user and specified organizer id. |
| Country error | The country code is missing or invalid. |
| Region/State error | The state code is missing or invalid (2 digits for US address). |