GET eo-forums?ClientId={ClientId}&chapter_id={chapter_id}&limit={limit}
Retrieve all Forums by Chapter Id
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ClientId |
ClientId |
string |
Required |
| chapter_id |
Chapter Id |
globally unique identifier |
Required |
| limit |
Limit |
integer |
Default value is 0 |
Body Parameters
None.
Response Information
Resource Description
| Name | Description | Type | Additional information |
|---|---|---|---|
| ForumId | globally unique identifier |
None. |
|
| ForumName | string |
None. |
|
| ChapterId | string |
None. |
|
| ChapterName | string |
None. |
|
| ModeratorId | string |
None. |
|
| Moderator | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"ForumId": "e256b299-2967-4f11-8577-aa4d21785f70",
"ForumName": "sample string 2",
"ChapterId": "sample string 3",
"ChapterName": "sample string 4",
"ModeratorId": "sample string 5",
"Moderator": "sample string 6"
}
application/xml, text/xml
Sample:
<ForumResult xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ForumId>e256b299-2967-4f11-8577-aa4d21785f70</ForumId> <ForumName>sample string 2</ForumName> <ChapterId>sample string 3</ChapterId> <ChapterName>sample string 4</ChapterName> <ModeratorId>sample string 5</ModeratorId> <Moderator>sample string 6</Moderator> </ForumResult>