API Method /events/tags/new
Adds a new tag to an event.
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 event to which these tags are being added.
Example Request
Here's an example request URL:
http://api.eventful.com/rest/events/tags/new?app_key=...&user_key=...&id=E0-001-000213902-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) added successfully.
Example XML Response
<?xml version="1.0" encoding="UTF-8"?>
<response status="ok">
<message>Tag(s) added successfully.</message>
</response>