Returns the tags related to the forum topic added by the current user. Requires OAuth authentification.
GET
http://api.cixonline.com/v1.0/cix.svc/tags/{forum}/{topic}/userbytopic(.xml/.json)
| Required | Name | Type | Description |
|---|---|---|---|
| required | forum | string | The name of the forum to return tags for. |
| topic | string | The name of the forum topic to return tags for. |
<TagSet xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Count>8</Count> <Start>5</Start> <Tags> <Tag> <Count>1</Count> <Name>suggestion</Name> <TagID>148</TagID> </Tag> <Tag> <Count>1</Count> <Name>email</Name> <TagID>45</TagID> </Tag> </Tags> </TagSet>
{ "Count":8, "Start":5, "Tags":[ {"Count":1,"Name":"suggestion","TagID":148}, {"Count":1,"Name":"email","TagID":45} ] }
| Code | Description |
|---|---|
| 400 | Bad request. Check input parameters. |
| 401 | Authentication failed. Missing required parameter : {parameter name}. |
| 401 | Signature expired. Either the timestamp or the nonce have expired or are invalid. |