Returns a list of the forum moderators. Requires OAuth authentification.
GET
http://api.cixonline.com/v1.0/cix.svc/forums/{forum}/moderators(.xml/.json)[?start={start}&maxresults={maxresults}]
| Required | Name | Type | Description |
|---|---|---|---|
| required | forum | string | Name of the forum to get a moderator list for. |
| optional | maxresults | string | The max number of results to retreive (Default 200) |
| start | string | The position to start from (Default 0) |
<ForumMods xmlns="http://cixonline.com" xmlns:i="http://www.w3.org/2001/XMLSchema-instance"> <Count>2</Count> <Mods> <Mod> <Name>charlie</Name> </Mod> <Mod> <Name>mat</Name> </Mod> </Mods> <Start>0</Start> </ForumMods>
{ "Count":2, "Mods":[ {"Name":"charlie"}, {"Name":"mat"} ], "Start":0 }
| 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. |