GET api/2.0/community/event/@self
Returns the list of all events for the current user with the event titles, date of creation and update, event text and author
This method doesn't have any parameters.
GET api/2.0/community/event/@self
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"id": 10,
"title": "Sample news",
"created": "2021-04-17T09:39:20.9077104Z",
"updated": "2021-04-17T09:39:20.9077104Z",
"type": 1,
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
}
}
]
}
text/xml
<result>
<status>0</status>
<response>
<id>10</id>
<title>Sample news</title>
<created>2021-04-17T09:39:20.9077104Z</created>
<updated>2021-04-17T09:39:20.9077104Z</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>
</response>
</result>