GET api/2.0/community/blog/@search/{query}
Returns a list of blog posts matching the search query specified in the request with the post titles, dates of creation and update, post texts, authors.
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": "2022-06-28T09:45:09.9216915Z",
"updated": "2022-06-28T09:45:09.9216915Z",
"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>2022-06-28T09:45:09.9216915Z</created>
<updated>2022-06-28T09:45:09.9216915Z</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>