Update Role Rights
Updates the specified Role Rights. Note that if you set all three permissions to false your role right will instead be deleted resulting in a smaller result set than you might expect.
Verb | PATCH |
---|---|
Endpoint | {base-url}/role-rights/ |
Max Page Size | N/A |
Request Body
{
"body": [
{
"id": 0,
"canView": false,
"canEdit": false,
"canExecute": false
}
]
}
Response
On Success
Echoes back the provided data.
Response Bady
[
{
"id": 0,
"canView": false,
"canEdit": false,
"canExecute": false
}
]