GET api/2.0/community/event/{feedid}
Returns the detailed information about an event with the ID specified in the request.
Name |
Description |
Type |
Example |
feedid
sent in url
|
Event ID
|
number
|
1234
|
GET api/2.0/community/event/1234
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": {
"id": 10,
"title": "Sample news",
"created": "2023-02-01T01:35:47.5252758Z",
"updated": "2023-02-01T01:35:47.5252758Z",
"type": 1,
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"text": "Text of feed",
"poll": {
"pollType": 0,
"endDate": "2023-02-01T01:35:47.5252758Z",
"startDate": "2023-02-01T01:35:47.5252758Z",
"voted": false,
"votes": [
{
"id": 133,
"name": "Variant 1",
"votes": 100
}
]
}
}
}
text/xml
<result>
<status>0</status>
<response>
<id>10</id>
<title>Sample news</title>
<created>2023-02-01T01:35:47.5252758Z</created>
<updated>2023-02-01T01:35:47.5252758Z</updated>
<type>1</type>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<text>Text of feed</text>
<poll>
<pollType>0</pollType>
<endDate>2023-02-01T01:35:47.5252758Z</endDate>
<startDate>2023-02-01T01:35:47.5252758Z</startDate>
<voted>false</voted>
<votes>
<id>133</id>
<name>Variant 1</name>
<votes>100</votes>
</votes>
</poll>
</response>
</result>