entitlement_management_assignment_requests_requestor
Creates, updates, deletes, gets or lists an entitlement_management_assignment_requests_requestor resource.
Overview
| Name | entitlement_management_assignment_requests_requestor |
| Type | Resource |
| Id | entra_id.identity_governance.entitlement_management_assignment_requests_requestor |
Fields
The following fields are returned by SELECT queries:
- get
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
connectedOrganization | | The connected organization of the subject. Read-only. Nullable. |
displayName | string | The display name of the subject. |
email | string | The email address of the subject. |
objectId | string | The object identifier of the subject. null if the subject isn't yet a user in the tenant. |
onPremisesSecurityIdentifier | string | A string representation of the principal's security identifier, if known, or null if the subject doesn't have a security identifier. |
principalName | string | The principal name, if known, of the subject. |
subjectType | | The resource type of the subject. The possible values are: notSpecified, user, servicePrincipal, unknownFutureValue. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | access_package_assignment_request_id | The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable. Supports $expand. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
access_package_assignment_request_id | string | The unique identifier of accessPackageAssignmentRequest |
SELECT examples
- get
The subject who requested or, if a direct assignment, was assigned. Read-only. Nullable. Supports $expand.
SELECT
id,
connectedOrganization,
displayName,
email,
objectId,
onPremisesSecurityIdentifier,
principalName,
subjectType
FROM entra_id.identity_governance.entitlement_management_assignment_requests_requestor
WHERE access_package_assignment_request_id = '{{ access_package_assignment_request_id }}' -- required
;