API Method /venues/tags/list
Lists all tags attached to an venue.
Arguments
- authentication
- This method requires the usual authentication
arguments.
- id string
- The ID of the venue.
Example Request
Here's an example request URL:
http://api.evdb.com/rest/venues/tags/list?app_key=...&id=V0-001-000104019-2
Output Parameters
Output from this function is an XML block with the following constructs:
- tags
- A list of tags associated with the venue. Each link entry has the
following structure:
- idstring
- The tag ID. (Useful for URLs.)
- titlestring
- The tag as it should be displayed.
- owner string
- The username who created this tag
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<venue id="V0-001-000104019-2">
<tags>
<tag id="bar">
<title>bar</title>
<owner>chuck</owner>
</tag>
<tag id="foo">
<title>foo</title>
<owner>chuck</owner>
</tag>
<tag id="sandiego">
<title>San Diego</title>
<owner>chuck</owner>
</tag>
</tags>
</venue>