Returns the tags related to the forum. Requires OAuth authentification.
GET
http://api.cixonline.com/v1.0/cix.svc/tags/{forum}/byforum(.xml/.json)
| Required | Name | Type | Description |
|---|---|---|---|
| required | forum | string | The name of the forum to return tags for. |
<TagSet xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Count>20</Count> <Start>2</Start> <Tags> <Tag> <Count>2</Count> <Name>Meetup</Name> <TagID>93</TagID> </Tag> <Tag> <Count>2</Count> <Name>Flickr</Name> <TagID>7</TagID> </Tag> </Tags> </TagSet>
{ "Count":20, "Start":2, "Tags":[ {"Count":2,"Name":"Meetup","TagID":93}, {"Count":2,"Name":"Flickr","TagID":7} ] }
| 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. |