Update folder permissions

POST /api/v1/folder/{folder_uuid}/permissions

Path parameters

  • folder_uuid string Required
application/json

Body Required

  • clients_read boolean Required

    Give read access to all clients that can view the documentable item.

  • clients_write boolean Required

    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.

Responses

  • 401 application/json
    Hide response attribute Show response attribute object
    • message string
POST /api/v1/folder/{folder_uuid}/permissions
curl \
 --request POST 'https://api.plannrcrm.com/api/v1/folder/6ff8f7f6-1eb3-3525-be4a-3932c805afed/permissions' \
 --header "Authorization: Bearer $ACCESS_TOKEN" \
 --header "Content-Type: application/json" \
 --data '{"clients_read":false,"clients_write":false,"participants":[{"uuid":"7d766b59-e511-480d-af5a-17ea6c2158ed","write":false},{"uuid":"79160a7e-e620-4cd4-91c7-26ced98f9178","write":true}]}'
Request examples
{
  "clients_read": false,
  "clients_write": false,
  "participants": [
    {
      "uuid": "7d766b59-e511-480d-af5a-17ea6c2158ed",
      "write": false
    },
    {
      "uuid": "79160a7e-e620-4cd4-91c7-26ced98f9178",
      "write": true
    }
  ]
}
Response examples (401)
{
  "message": "Unauthenticated."
}