API Method /venues/properties/remove
This function removes a property (or group of properties) from an venue.
Arguments
- authentication
- This method requires user authentication.
- id string
- The venue ID.
- property_id string
- The ID of the property to remove, OR:
- name string
- The name of the property to remove. NOTE: if name is specified, any property with this name will be removed from this venue.
Example Request
Here's an example URL:
http://api.eventful.com/rest/venues/properties/remove?...&id=V0-001-000932582-2&property_id=123
Output Parameters
Output from this function is an XML block with the following constructs:
- status string
- ok
- messagestring
- Property removed successfully.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<message>Property removed successfully.</message>
</response>
Error Codes
This method may return these errors in an error document:
- Authentication error
- The specified user was not found or provided invalid credentials.
- Missing parameter
- The 'id' and 'property_id' (or 'name') parameters are mandatory.
- Not found
- There is no venue with that identifier.