GET api/2.0/community/blog/tag This function requires authentication

Description

Returns a list of all the tags used in the blog posts with a number specifying the tag usage.

Parameters

This method doesn't have any parameters.

Example
GET api/2.0/community/blog/tag
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

List of tags

Example Response

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>