The name parameter's value depends on the target resource for the request, namely projects or organizations. Each resource type's name value format is described below:
projects.roles.patch: projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}. This method updates only custom roles that have been created at the project level. Example request URL: https://iam.googleapis.com/v1/projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}
organizations.roles.patch: organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}. This method updates only custom roles that have been created at the organization level. Example request URL: https://iam.googleapis.com/v1/organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}
Note: Wildcard (*) values are invalid; you must specify a complete project ID or organization ID.
Authorization requires the following IAM permission on the specified resource name:
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-07 UTC."],[[["This page details how to update a custom Role using the `PATCH` method via the `iam.googleapis.com` API."],["The `PATCH` request targets either project-level or organization-level custom roles using specific URL formats: `projects/{PROJECT_ID}/roles/{CUSTOM_ROLE_ID}` or `organizations/{ORGANIZATION_ID}/roles/{CUSTOM_ROLE_ID}`, respectively."],["The request requires specifying the resource `name` as a path parameter, and a `updateMask` query parameter is needed to define which Role fields are being updated."],["Both the request and response bodies utilize an instance of the `Role` object, as defined in the API."],["To update the Role, the request requires the `iam.roles.update` permission and either the `https://www.googleapis.com/auth/iam` or `https://www.googleapis.com/auth/cloud-platform` OAuth scope."]]],[]]