GET api/2.0/community/blog/tag
Returns a list of all tags used with blog posts with the post title, date of creation and update, post text, author and all the tags used
This method doesn't have any parameters
GET api/2.0/community/blog/tag
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"name": "Sample tag",
"count": 10
}
]
}
text/xml
<result>
<status>0</status>
<response>
<name>Sample tag</name>
<count>10</count>
</response>
</result>