POST api/2.0/crm/case/filter/taglist
Adds the selected tag to the group of cases with the parameters specified in the request.
Name |
Description |
Type |
Example |
contactid
sent in body
|
Contact ID
optional
|
number
|
1234
|
isClosed
sent in body
|
Case status: closed or not
optional
|
Bool value
|
true
|
tags
sent in body
|
Case tags
optional
|
Collection of strings
collection
|
some text
|
tagName
sent in body
|
Tag name
|
string
|
some text
|
POST api/2.0/crm/case/filter/taglist
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"contactid": 1234,
"isClosed": true,
"tags": [
"some text"
],
"tagName": "some text"
}