Skip to main content

entitlement_management_assignment_requests_requestor

Creates, updates, deletes, gets or lists an entitlement_management_assignment_requests_requestor resource.

Overview

Nameentitlement_management_assignment_requests_requestor
TypeResource
Identra_id.identity_governance.entitlement_management_assignment_requests_requestor

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
connectedOrganizationThe connected organization of the subject. Read-only. Nullable.
displayNamestringThe display name of the subject.
emailstringThe email address of the subject.
objectIdstringThe object identifier of the subject. null if the subject isn't yet a user in the tenant.
onPremisesSecurityIdentifierstringA string representation of the principal's security identifier, if known, or null if the subject doesn't have a security identifier.
principalNamestringThe principal name, if known, of the subject.
subjectTypeThe resource type of the subject. The possible values are: notSpecified, user, servicePrincipal, unknownFutureValue.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccess_package_assignment_request_idThe 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.

NameDatatypeDescription
access_package_assignment_request_idstringThe unique identifier of accessPackageAssignmentRequest

SELECT examples

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
;