Skip to content

Latest commit

 

History

History
54 lines (42 loc) · 2.97 KB

File metadata and controls

54 lines (42 loc) · 2.97 KB
title customExtensionStageSetting resource type
description Defines when to execute an access package custom workflow extension.
author vikama-microsoft
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType
ms.date 07/23/2024

customExtensionStageSetting resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Defines when to execute a accessPackageAssignmentRequestWorkflowExtension or accessPackageAssignmentWorkflowExtension object.

Inherits from entity.

To read the customExtensionStageSettings objects on a policy, append ?$expand=customExtensionStageSettings($expand=customExtension) to a GET accessPackageAssignmentPolicy request. For example, GET https://graph.microsoft.com/beta/identityGovernance/entitlementManagement/accessPackageAssignmentPolicies/4540a08f-8ab5-43f6-a923-015275799197?$expand=customExtensionStageSettings($expand=customExtension). For more information, see Example 3: Retrieve the custom extension stage settings for a policy.

To delete the customExtensionStageSettings objects from a policy, call the Update accessPackageAssignmentPolicy and specify the customExtensionHandlers property as an empty collection. For more information, see Example 3: Remove the customExtensionStageSettings from a policy.

Properties

Property Type Description
id String Identifier of the stage. Inherited from entity.
stage accessPackageCustomExtensionStage Indicates the stage of the access package assignment request workflow when the access package custom extension runs. The possible values are: assignmentRequestCreated, assignmentRequestApproved, assignmentRequestGranted, assignmentRequestRemoved, assignmentFourteenDaysBeforeExpiration, assignmentOneDayBeforeExpiration, unknownFutureValue.

Relationships

Relationship Type Description
customExtension customCalloutExtension Indicates the custom workflow extension that is executed at this stage. Nullable. Supports $expand.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.customExtensionStageSetting",
  "id": "String (identifier)",
  "stage": "String"
}