group.admin.removeEvent [HTTP POST]
Try to remove an event to a group. This method can only be called by an authenticated group admin, or by the user who added the event to the group. 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?)
group_id (Required)
The id of the group.
event_id (Required)
The id of the event to remove.
Example Response (returns empty response if OK)
<?xml version="1.0" encoding="UTF-8"?>
<rsp stat="ok" version="1.0">
</rsp>
Error Codes (sent in HTTP Response Header)
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 parameter.
- Invalid group_id parameter.
- Invalid event_id parameter.
- You do not have permissions to remove this event.
- No such event exists in this group.