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/%22some+text%22/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>