API Method /venues/tags/delete
Removes tags from an venue.
Note: This method requires user authentication
Arguments
- authentication
- This method requires the usual authentication
arguments.
- tags string
- A space-delimited list of tags. Tags with spaces should be enclosed in quotes (e.g. "San Diego").
- id string
- The ID of the venue from which these tags are being deleted.
Example Request
Here's an example request URL:
http://api.evdb.com/rest/venues/tags/delete?app_key=...&user_key...&id=V0-001-000104019-2
&tags=foo+bar+%22San+Diego%22
Output Parameters
Output from this function is an XML block with the following constructs:
- status string
- ok
- messagestring
- Tag(s) deleted successfully.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<message>Tag(s) deleted successfully.</message>
</response>