event.removeTag [HTTP POST]
Remove a single tag from an event. This method requires authentication.
Arguments
api_key (Required)
Your API application key. If you don't have one,
create one.
token (Required)
An authentication token. (
What's this?)
event_id (Numeric, Required)
The event_id of the event. To get a event_id, try the event.search function.
tag (String, Required)
A single "raw" tag to remove. A raw tag is the original string provided to tag the object with that also appear in the Event Detail page on Upcoming. These are not the normalized form used for searches, or returned via the API event.getInfo method.
Note: This might mean that you need to keep track of tags added by users in your application.
Example Response
<?xml version="1.0" encoding="UTF-8"?>
<rsp stat="ok" version="1.0">
<event id="1" name="Tori Amos, Ben Folds" tags=""
description="The "Lottapianos" Tour. Ben Folds is opening, and will
play a one hour set."
start_date="2003-08-01"
end_date="0000-00-00"
start_time="19:00:00" end_time=""
personal="0" selfpromotion="0"
metro_id="1" venue_id="1"
user_id="1" category_id="1"
date_posted="2003-06-07" />
</rsp>
Error Codes
403 Not Authorized:
- Missing valid authentication parameters - Please pass an authentication token to the method.
- Invalid authentication parameters - either that token was not found, or it may be deactivated. Please contact us for support.
409 Conflict:
- Missing valid api_key - Please create an API key using the above link.
- Your api_key is inactive or not found - Please contact us for support.
- Invalid user_id, please contact support.
- Missing event_id parameter.
- Invalid tag parameter.
- Could not load event, please make sure you have access to this event id on Upcoming.
- Unknown error removing tag, please contact support.