GET api/2.0/community/blog/@search/{query}
Returns a list of blog posts matching the search query with the post title, date of creation and update, post text and author
Name |
Description |
Type |
Example |
query
sent in url
|
search query
|
string
|
some text
|
GET api/2.0/community/blog/@search/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-03-05T17:43:37.7555744Z",
"updated": "2021-03-05T17:43:37.7555744Z",
"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-03-05T17:43:37.7555744Z</created>
<updated>2021-03-05T17:43:37.7555744Z</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>