GET api/2.0/crm/{entityType}/tag This function requires authentication

Description

Returns a list of all the tags associated with the entity type specified in the request.

Parameters
Name Description Type Example
entityType
sent in url
Entity type
Allowed values: contact, opportunity, case
string some text
Example
GET api/2.0/crm/%22some+text%22/tag
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
Returns

Tag

Example Response

application/json

{
  "status": 0,
  "response": [
    {
      "Title": "Tag",
      "RelativeItemsCount": 1
    }
  ]
}

text/xml

<result>
  <status>0</status>
  <response>
    <Title>Tag</Title>
    <RelativeItemsCount>1</RelativeItemsCount>
  </response>
</result>