UnsubscribeTag
Unsubscribe to a tag.
Stored Procedure Specific Information
Execute
Call this procedure to unsubscribe from a tag.
To unsubscribe from a tag, you must specify the following column: Slug. A successful authentication is also required.
For example:
EXEC UnsubscribeTag Slug='tagsome';
Input
| Name | Type | Description |
| Slug | String | The slug (URL-friendly name) of the tag that the user wants to unsubscribe from. |
Result Set Columns
| Name | Type | Description |
| Success | String | Indicates whether the unsubscribe operation completed successfully. |
| Subscribed | Boolean | Indicates whether the user is still subscribed to the tag after the operation. |
| RemovedTag | String | The unique identifier of the tag that was unsubscribed. |
| TagsAggregate | String | An array of tags associated with the user's subscriptions after the operation. |