Add case contact
|
POST api/2.0/crm/case/{caseid}/contact
|
Adds the selected contact to the case with the ID specified in the request
|
Close case
|
PUT api/2.0/crm/case/{caseid}/close
|
Close the case with the ID specified in the request
|
Create case
|
POST api/2.0/crm/case
|
Creates the case with the parameters specified in the request
|
Delete case
|
DELETE api/2.0/crm/case/{caseid}
|
Deletes the case with the ID specified in the request
|
Delete case contact
|
DELETE api/2.0/crm/case/{caseid}/contact/{contactid}
|
Delete the selected contact from the case with the ID specified in the request
|
Delete case group
|
PUT api/2.0/crm/case
|
Deletes the group of cases with the IDs specified in the request
|
Delete case group
|
DELETE api/2.0/crm/case/filter
|
Deletes the list of all cases matching the parameters specified in the request
|
Get all case contacts
|
GET api/2.0/crm/case/{caseid}/contact
|
Returns the list of all contacts associated with the case with the ID specified in the request
|
Get case by ID
|
GET api/2.0/crm/case/{caseid}
|
Returns the detailed information about the case with the ID specified in the request
|
Get case list
|
GET api/2.0/crm/case/filter
|
Returns the list of all cases matching the parameters specified in the request
|
Resume case
|
PUT api/2.0/crm/case/{caseid}/reopen
|
Resume the case with the ID specified in the request
|
Set case access rights
|
PUT api/2.0/crm/case/access
|
Sets access rights for other users to the list of cases with the IDs specified in the request
|
Set case access rights
|
PUT api/2.0/crm/case/filter/access
|
Sets access rights for other users to the list of all cases matching the parameters specified in the request
|
Set rights to case
|
PUT api/2.0/crm/case/{caseid}/access
|
Sets access rights for the selected case with the parameters specified in the request
|
Update case
|
PUT api/2.0/crm/case/{caseid}
|
Updates the selected case with the parameters specified in the request
|