GET api/2.0/crm/{entityType}/tag
Returns a list of all the tags associated with the entity type specified in the request.
Name |
Description |
Type |
Example |
entityType
sent in url
|
Entity type
Allowed values: contact, opportunity, case
|
string
|
some text
|
GET api/2.0/crm/some+text/tag
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
application/json
{
"status": 0,
"response": [
{
"title": "Tag",
"relativeItemsCount": 1
}
]
}
text/xml
<result>
<status>0</status>
<response>
<title>Tag</title>
<relativeItemsCount>1</relativeItemsCount>
</response>
</result>