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": "983cec1d-2e69-43b0-b090-aa2b5f0f2a9e",
"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>983cec1d-2e69-43b0-b090-aa2b5f0f2a9e</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>