GET api/2.0/community/blog/user/{username}
Returns a list of blog posts of the specified user with the post title, date of creation and update and post text
Name |
Description |
Type |
Example |
username
sent in url
|
Username
|
string
|
some text
|
GET api/2.0/community/blog/user/some+text
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": "2021-04-10T13:44:53.4166277Z",
"updated": "2021-04-10T13:44:53.4166277Z",
"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>2021-04-10T13:44:53.4166277Z</created>
<updated>2021-04-10T13:44:53.4166277Z</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>