Skip to main content

entitlement_management_assignment_requests_assignment

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

Overview

Nameentitlement_management_assignment_requests_assignment
TypeResource
Identra_id.identity_governance.entitlement_management_assignment_requests_assignment

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
accessPackageRead-only. Nullable. Supports $filter (eq) on the id property and $expand query parameters.
assignmentPolicyRead-only. Supports $filter (eq) on the id property and $expand query parameters.
customExtensionCalloutInstancesarrayInformation about all the custom extension calls that were made during the access package assignment workflow.
expiredDateTimestring (date-time)The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z. Read-only. (pattern: ^[0-9]{4,}-(0[1-9]|1[012])-(0[1-9]|[12][0-9]|3[01])T([01][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]([.][0-9]{1,12})?(Z|[+-][0-9][0-9]:[0-9][0-9])$)
scheduleWhen the access assignment is to be in place. Read-only.
stateThe state of the access package assignment. The possible values are: delivering, partiallyDelivered, delivered, expired, deliveryFailed, unknownFutureValue. Read-only. Supports $filter (eq).
statusstringMore information about the assignment lifecycle. Possible values include Delivering, Delivered, AutoAssignmentInGracePeriod, NearExpiry1DayNotificationTriggered, or ExpiredNotificationTriggered. Read-only.
targetThe subject of the access package assignment. Read-only. Nullable. Supports $expand. Supports $filter (eq) on objectId.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectaccess_package_assignment_request_idFor a requestType of userAdd or adminAdd, this is an access package assignment requested to be created. For a requestType of userRemove, adminRemove, approverRemove, or systemRemove, this has the id property of an existing assignment to be removed. 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

For a requestType of userAdd or adminAdd, this is an access package assignment requested to be created. For a requestType of userRemove, adminRemove, approverRemove, or systemRemove, this has the id property of an existing assignment to be removed. Supports $expand.

SELECT
id,
accessPackage,
assignmentPolicy,
customExtensionCalloutInstances,
expiredDateTime,
schedule,
state,
status,
target
FROM entra_id.identity_governance.entitlement_management_assignment_requests_assignment
WHERE access_package_assignment_request_id = '{{ access_package_assignment_request_id }}' -- required
;