Role Definitions - Get By Id
Gets a role definition by ID.
GET https://management.azure.com/{roleId}?disambiguation_dummy&api-version=2022-04-01
URI Parameters
Name | In | Required | Type | Description |
---|---|---|---|---|
role
|
path | True |
string |
The fully qualified role definition ID. Use the format, /subscriptions/{guid}/providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId} for subscription level role definitions, or /providers/Microsoft.Authorization/roleDefinitions/{roleDefinitionId} for tenant level role definitions. |
api-version
|
query | True |
string |
The API version to use for this operation. |
Responses
Name | Type | Description |
---|---|---|
200 OK |
OK - Returns information about the role definition. |
|
Other Status Codes |
Error response describing why the operation failed. |
Security
azure_auth
Azure Active Directory OAuth2 Flow
Type:
oauth2
Flow:
implicit
Authorization URL:
https://login.microsoftonline.com/common/oauth2/authorize
Scopes
Name | Description |
---|---|
user_impersonation | impersonate your user account |
Examples
Get role definition by ID
Sample request
GET https://management.azure.com/roleDefinitionId?disambiguation_dummy&api-version=2022-04-01
Sample response
{
"properties": {
"roleName": "Role name",
"type": "roletype",
"description": "Role description",
"assignableScopes": [
"/subscriptions/subId"
],
"permissions": [
{
"actions": [
"action"
],
"notActions": [],
"dataActions": [
"dataAction"
],
"notDataActions": []
}
]
},
"id": "/subscriptions/subID/providers/Microsoft.Authorization/roleDefinitions/roleDefinitionId",
"type": "Microsoft.Authorization/roleDefinitions",
"name": "roleDefinitionId"
}
Definitions
Name | Description |
---|---|
Error |
The resource management error additional info. |
Error |
The error detail. |
Error |
Error response |
Permission |
Role definition permissions. |
Role |
Role definition. |
ErrorAdditionalInfo
The resource management error additional info.
Name | Type | Description |
---|---|---|
info |
object |
The additional info. |
type |
string |
The additional info type. |
ErrorDetail
The error detail.
Name | Type | Description |
---|---|---|
additionalInfo |
The error additional info. |
|
code |
string |
The error code. |
details |
The error details. |
|
message |
string |
The error message. |
target |
string |
The error target. |
ErrorResponse
Error response
Name | Type | Description |
---|---|---|
error |
The error object. |
Permission
Role definition permissions.
Name | Type | Description |
---|---|---|
actions |
string[] |
Allowed actions. |
dataActions |
string[] |
Allowed Data actions. |
notActions |
string[] |
Denied actions. |
notDataActions |
string[] |
Denied Data actions. |
RoleDefinition
Role definition.
Name | Type | Description |
---|---|---|
id |
string |
The role definition ID. |
name |
string |
The role definition name. |
properties.assignableScopes |
string[] |
Role definition assignable scopes. |
properties.createdBy |
string |
Id of the user who created the assignment |
properties.createdOn |
string |
Time it was created |
properties.description |
string |
The role definition description. |
properties.permissions |
Role definition permissions. |
|
properties.roleName |
string |
The role name. |
properties.type |
string |
The role type. |
properties.updatedBy |
string |
Id of the user who updated the assignment |
properties.updatedOn |
string |
Time it was updated |
type |
string |
The role definition type. |