Update folder permissions
Headers
-
Content-Type string
-
Accept string
Body Required
-
Give read access to all clients that can view the documentable item.
-
Give write access to all clients that can view the documentable item.
-
participants array[string]
Give read and write access to specific people that can view the documentable item.
POST
/api/v1/folder/{folder_uuid}/permissions
curl \
-X POST https://api.plannrcrm.com/api/v1/folder/folder_uuid/permissions \
-H "Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"clients_read":false,"clients_write":false,"participants":[{"uuid":"cd0aeb61-0800-4cd5-810a-8b6454498976","write":false},{"uuid":"6574b8af-1edd-43a2-833f-c4b0c7fee318","write":true}]}'
Request examples
# Headers
Authorization: Bearer {OAUTH_ACCESS_TOKEN or PERSONAL_ACCESS_TOKEN}
Content-Type: application/json
Accept: application/json
# Payload
{
"clients_read": false,
"clients_write": false,
"participants": [
{
"uuid": "cd0aeb61-0800-4cd5-810a-8b6454498976",
"write": false
},
{
"uuid": "6574b8af-1edd-43a2-833f-c4b0c7fee318",
"write": true
}
]
}