Patch Role API
Updates the name and/or description of an existing custom RBAC role.
Use this endpoint to correct a role's display name or description without affecting the scopes or user assignments associated with that role.
About Patch Role
This endpoint modifies the metadata of an existing custom role — its name and description — and leaves the role's assigned scopes and user assignments unchanged. It accepts the same Role schema as POST /authz2/v1/roles/. To modify the permissions a role grants, use PUT /authz2/v1/roles/{role_id}/scopes instead.
Key Fields / Request Body
name — the updated display name for the role
description — the updated description for the role
Common Use Cases
Renaming a role after a team restructure or job function change
Correcting a typo or clarifying a role description to make the role list more auditable
Best Practices
Notify any Enterprise Admins or automation that reference this role by name that it has been renamed — role_id is stable across renames but human-readable references in scripts or documentation are not
Use GET /authz2/v1/roles/{role_id} to confirm the current name and description before updating
Workflow
Call GET /authz2/v1/roles/{role_id} to confirm the current role metadata
PATCH to this endpoint with the updated name and/or description
Confirm the changes in the returned RoleResponse
Path parameters
Role ID
Request body
Response
Request Succeded