GET api/2.0/community/blog/{postid}
Returns the detailed information for the blog post with the ID specified in the request
Name |
Description |
Type |
Example |
postid
sent in url
|
post ID
|
guid
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
GET api/2.0/community/blog/9924256A-739C-462b-AF15-E652A3B1B6EB
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-03-04T16:58:40.7898442Z",
"updated": "2021-03-04T16:58:40.7898442Z",
"createdBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"tags": [
"Tag1",
"Tag2"
],
"text": "Post text"
}
}
text/xml
<result>
<status>0</status>
<response>
<id>00000000-0000-0000-0000-000000000000</id>
<title>Example post</title>
<created>2021-03-04T16:58:40.7898442Z</created>
<updated>2021-03-04T16:58:40.7898442Z</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>
<tags>Tag1</tags>
<tags>Tag2</tags>
<text>Post text</text>
</response>
</result>