GET api/2.0/community/forum
Для этой функции требуется аутентификация.
Описание
Возвращает список всех форумов портала с названиями тем/thread, датами создания и обновления, текстами сообщений и авторами.
Параметры
Этот метод не имеет параметров.
Пример
GET api/2.0/community/forum Host: yourportal.r7-office.ru Content-Type: application/json Accept: application/json
Возвращает
Список форумов
Пример ответа
application/json
{
"status": 0,
"response": {
"categories": [
{
"id": 0,
"title": "Sample title",
"created": "2022-10-06T05:03:04.2470027Z",
"updated": "2022-10-06T05:03:04.2470027Z",
"description": "Sample category",
"threads": [
{
"id": 10,
"title": "The Thread",
"updatedBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"description": "Sample thread",
"created": "2022-10-06T05:03:04.2470027Z",
"updated": "2022-10-06T05:03:04.2470027Z",
"recentTopicId": 1234,
"recentTopicTitle": "Sample topic"
}
]
}
]
}
}
text/xml
<result>
<status>0</status>
<response>
<categories>
<id>0</id>
<title>Sample title</title>
<created>2022-10-06T05:03:04.2470027Z</created>
<updated>2022-10-06T05:03:04.2470027Z</updated>
<description>Sample category</description>
<threads>
<id>10</id>
<title>The Thread</title>
<updatedBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</updatedBy>
<description>Sample thread</description>
<created>2022-10-06T05:03:04.2470027Z</created>
<updated>2022-10-06T05:03:04.2470027Z</updated>
<recentTopicId>1234</recentTopicId>
<recentTopicTitle>Sample topic</recentTopicTitle>
</threads>
</categories>
</response>
</result>