Skip to main content

entitlement_management_access_package_assignment_approvals

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

Overview

Nameentitlement_management_access_package_assignment_approvals
TypeResource
Identra_id.identity_governance.entitlement_management_access_package_assignment_approvals

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
stagesarrayA collection of stages in the approval decision.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectapproval_idRetrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.
In PIM for Groups, providing the identifier of the assignment schedule request.
listselectRetrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.
In PIM for Groups, providing the identifier of the assignment schedule request.
insertinsert
updateupdateapproval_id
deletedeleteapproval_idIf-Match

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
approval_idstringThe unique identifier of approval
If-MatchstringETag

SELECT examples

Retrieve the properties of an approval object. This API request is made by an approver in the following scenarios: In Microsoft Entra entitlement management, providing the identifier of the access package assignment request.
In PIM for Groups, providing the identifier of the assignment schedule request.

SELECT
id,
stages
FROM entra_id.identity_governance.entitlement_management_access_package_assignment_approvals
WHERE approval_id = '{{ approval_id }}' -- required
;

INSERT examples

No description available.

INSERT INTO entra_id.identity_governance.entitlement_management_access_package_assignment_approvals (
id,
stages
)
SELECT
'{{ id }}',
'{{ stages }}'
RETURNING
id,
stages
;

UPDATE examples

No description available.

UPDATE entra_id.identity_governance.entitlement_management_access_package_assignment_approvals
SET
id = '{{ id }}',
stages = '{{ stages }}'
WHERE
approval_id = '{{ approval_id }}' --required
RETURNING
id,
stages;

DELETE examples

No description available.

DELETE FROM entra_id.identity_governance.entitlement_management_access_package_assignment_approvals
WHERE approval_id = '{{ approval_id }}' --required
AND If-Match = '{{ If-Match }}'
;