Returns a list of all the blog posts for the current user with the post titles, dates of creation and update, post texts, and author.
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
List of my posts
application/json
{ "status": 0, "response": { "Id": "00000000-0000-0000-0000-000000000000", "Title": "Example post", "Created": "2020-12-03T21:36:12.0774137Z", "Updated": "2020-12-03T21:36:12.0774137Z", "CreatedBy": { "Id": "00000000-0000-0000-0000-000000000000", "DisplayName": "Mike Zanyatski", "Title": "Manager", "AvatarSmall": "url to small avatar", "ProfileUrl": "\\/Products\\/People\\/Profile.aspx?user=administrator" }, "Preview": "Preview post", "Tags": [ "Tag1", "Tag1" ], "BlogTitle": "Blog Title" } }
text/xml
<result> <status>0</status> <response> <Id>00000000-0000-0000-0000-000000000000</Id> <Title>Example post</Title> <Created>2020-12-03T21:36:12.0774137Z</Created> <Updated>2020-12-03T21:36:12.0774137Z</Updated> <CreatedBy> <Id>00000000-0000-0000-0000-000000000000</Id> <DisplayName>Mike Zanyatski</DisplayName> <Title>Manager</Title> <AvatarSmall>url to small avatar</AvatarSmall> <ProfileUrl>\/Products\/People\/Profile.aspx?user=administrator</ProfileUrl> </CreatedBy> <Preview>Preview post</Preview> <Tags>Tag1</Tags> <Tags>Tag1</Tags> <BlogTitle>Blog Title</BlogTitle> </response> </result>