GET api/2.0/community/blog/@self
Returns the list of all blog posts for the current user with the post title, date of creation and update, post text and author ID and display name
This method doesn't have any parameters
GET api/2.0/community/blog/@self
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"id": "00000000-0000-0000-0000-000000000000",
"title": "Example post",
"created": "2019-12-12T20:36:51.4702041Z",
"updated": "2019-12-12T20:36:51.4702041Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"preview": "Preview post",
"tags": [
"Tag1",
"Tag2"
],
"blogTitle": null
}
]
}
text/xml
<result>
<status>0</status>
<response>
<id>00000000-0000-0000-0000-000000000000</id>
<title>Example post</title>
<created>2019-12-12T20:36:51.4702041Z</created>
<updated>2019-12-12T20:36:51.4702041Z</updated>
<createdBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createdBy>
<preview>Preview post</preview>
<tags>Tag1</tags>
<tags>Tag2</tags>
<blogTitle />
</response>
</result>