UpdateRoleRequest
Request to update a custom role. This is a full replacement — the role's name, description and
entire permission set are overwritten with the values supplied.
Properties
| Name | Type | Description |
|---|---|---|
| name* | string | The display name of the role. Must be unique within the practice and cannot use a |
The display name of the role. Must be unique within the practice and cannot use a | ||
| description | string | Optional description of what this role is for |
Optional description of what this role is for | ||
| permissions | object | The capabilities to grant per entity. Capabilities are independent flags — include every |
The capabilities to grant per entity. Capabilities are independent flags — include every | ||
JSON Example
{
"name": "string",
"description": "string",
"permissions": {
"Tasks": [
"..."
],
"Users": [
"..."
],
"Clients": [
"..."
],
"Contacts": [
"..."
],
"ClientContacts": [
"..."
]
}
}