POST api/2.0/crm/{entityType}/taglist
Adds a group of tags to the entity with the ID specified in the request
Name |
Description |
Type |
Example |
entityType
sent in url
|
Tag type
|
string
|
some text
|
entityid
sent in body
|
Entity ID
|
Collection of numbers
collection
|
1234
|
tagName
sent in body
|
Tag name
|
string
|
some text
|
POST api/2.0/crm/some+text/taglist
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"entityid": [
1234
],
"tagName": "some text"
}