Authorization Manager Retrieve Role Permissions

Authorization Manager Retrieve Role Permissions

Finds all the permissions that use a particular role.

The result is restricted to managed entities that are visible to the user making the call.

Required privileges: System.View

Request
URI
POST
https://{api_host}/sdk/vim25/{release}/AuthorizationManager/{moId}/RetrieveRolePermissions
COPY
Path Parameters
string
moId
Required

The unique identifier for the managed object to which the method attaches; the serialized managed object reference for a request has the form moType/moId, in this case AuthorizationManager/{moId}.

string
release
Required

The vSphere release schema. The current specification covers vSphere 8.0.2.0 APIs.


Request Body
RetrieveRolePermissionsRequestType of type(s) application/json
Required
"RetrieveRolePermissionsRequestType Object"
integer As int32 As int32
roleId
Required

roleId

Authentication
This operation uses the following authentication methods.
Responses
200

OK

Returns Array of Permission of type(s) application/json
[
    "Permission Object"
]

500

NotFound: if the role does not exist.

Returns NotFound of type(s) application/json
"NotFound Object"

Code Samples
COPY
                    curl -X POST -H 'Authorization: <value>' -H 'Content-Type: application/json' -d '[{}]' https://{api_host}/sdk/vim25/{release}/AuthorizationManager/{moId}/RetrieveRolePermissions