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
Name |
Description |
Type |
Example |
casesid
sent in body
|
Case ID list
|
Collection of numbers
collection
|
1234
|
isPrivate
sent in body
|
Case privacy: private or not
|
Bool value
|
true
|
accessList
sent in body
|
List of users with access
|
Collection of guids
collection
|
9924256A-739C-462b-AF15-E652A3B1B6EB
|
PUT api/2.0/crm/case/access
Host: yourportal.onlyoffice.com
Content-Type: application/json
Accept: application/json
{
"casesid": [
1234
],
"isPrivate": true,
"accessList": [
"00000000-0000-0000-0000-000000000000"
]
}
application/json
{
"status": 0,
"response": [
{
"createBy": {
"id": "00000000-0000-0000-0000-000000000000",
"displayName": "Mike Zanyatski",
"title": "Manager",
"avatarSmall": "url to small avatar",
"profileUrl": ""
},
"created": "2021-02-26T19:22:39.0960092Z",
"title": "Exhibition organization",
"isClosed": false,
"isPrivate": false,
"canEdit": true,
"customFields": [
{
"entityId": 14523423,
"label": "Birthdate",
"fieldValue": "2021-02-26T19:22:39.0960092Z",
"fieldType": 5,
"position": 10,
"mask": "",
"id": 0
}
],
"id": 0
}
]
}
text/xml
<result>
<status>0</status>
<response>
<createBy>
<id>00000000-0000-0000-0000-000000000000</id>
<displayName>Mike Zanyatski</displayName>
<title>Manager</title>
<avatarSmall>url to small avatar</avatarSmall>
<profileUrl></profileUrl>
</createBy>
<created>2021-02-26T19:22:39.0960092Z</created>
<title>Exhibition organization</title>
<isClosed>false</isClosed>
<isPrivate>false</isPrivate>
<canEdit>true</canEdit>
<customFields>
<entityId>14523423</entityId>
<label>Birthdate</label>
<fieldValue>2021-02-26T19:22:39.0960092Z</fieldValue>
<fieldType>5</fieldType>
<position>10</position>
<mask></mask>
<id>0</id>
</customFields>
<id>0</id>
</response>
</result>