GET api/Moderation/ModList?groupId={groupId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupId | integer |
Required |
Body Parameters
None.
Response Information
Resource Description
Modlists| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| status | string |
None. |
|
| message | string |
None. |
|
| Modlist | Collection of ModeratorNote |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"status": "sample string 2",
"message": "sample string 3",
"Modlist": [
{
"NoteId": 1,
"GroupId": 2,
"UserId": 3,
"SenderId": 4,
"Message": "sample string 5"
},
{
"NoteId": 1,
"GroupId": 2,
"UserId": 3,
"SenderId": 4,
"Message": "sample string 5"
}
]
}
application/xml, text/xml
Sample:
<Status.Modlists xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ethos.Models">
<Modlist>
<ModeratorNote>
<GroupId>2</GroupId>
<Message>sample string 5</Message>
<NoteId>1</NoteId>
<SenderId>4</SenderId>
<UserId>3</UserId>
</ModeratorNote>
<ModeratorNote>
<GroupId>2</GroupId>
<Message>sample string 5</Message>
<NoteId>1</NoteId>
<SenderId>4</SenderId>
<UserId>3</UserId>
</ModeratorNote>
</Modlist>
<message>sample string 3</message>
<status>sample string 2</status>
<token>sample string 1</token>
</Status.Modlists>