Skip to content

Latest commit

 

History

History
76 lines (66 loc) · 3.64 KB

File metadata and controls

76 lines (66 loc) · 3.64 KB
title accessPackageAssignmentRequestCalloutData resource type
description The data sent to an Azure Logic App connected to a custom extension within a catalog and used via an access package assignment request.
author vikama-microsoft
ms.date 10/18/2025
ms.localizationpriority medium
ms.subservice entra-id-governance
doc_type resourcePageType

accessPackageAssignmentRequestCalloutData resource type

Namespace: microsoft.graph

[!INCLUDE beta-disclaimer]

Represents the data sent to Azure Logic Apps as part of a custom extension callout request when a custom extension in a catalog gets used as part of an access package assignment request.

Inherits from customExtensionData.

Properties

Property Type Description
accessPackageAssignmentRequestId String The request ID of the access package assignment.
answers accessPackageAnswer collection The requestor's provided answer to an access package question.
callbackConfiguration customExtensionCallbackConfiguration The timeout duration for callback.
callbackUriPath String The URL where the reply to the call out goes.
customExtensionStageInstanceId String Unique identifier of the callout to the custom extension.
requestType String The type of the request. The possible values are: notSpecified, userAdd, userUpdate, userRemove, adminAdd, adminUpdate, adminRemove, systemAdd, systemUpdate, systemRemove, onBehalfAdd, unknownFutureValue.
stage String Indicates the stage at which the custom callout extension is executed.
state String The state in which the callout extension data is in. The possible values are: submitted, pendingApproval, delivering, delivered, deliveryFailed, denied, scheduled, canceled, partiallyDelivered, unknownFutureValue.
status String The status of the callout request.
verifiedCredentialsData verifiedCredentialData collection The details of the verifiable credential that the requestor presented, such as the issuer and claims.

Relationships

Relationship Type Description
accessPackage accessPackage The access package where the custom extension call out data to the Azure Logic App is being sent.
accessPackageCatalog accessPackageCatalog The catalog that contains the custom extension.
assignment accessPackageAssignment The specific assignment of the access package.
requestor accessPackageSubject The user requesting the access package assignment.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.accessPackageAssignmentRequestCalloutData",
  "accessPackageAssignmentRequestId": "String",
  "callbackUriPath": "String",
  "customExtensionStageInstanceId": "String",
  "stage": "String",
  "requestType": "String",
  "answers": [
    {
      "@odata.type": "microsoft.graph.accessPackageAnswerString"
    }
  ],
  "state": "String",
  "status": "String",
  "callbackConfiguration": {
    "@odata.type": "microsoft.graph.customExtensionCallbackConfiguration"
  },
  "verifiedCredentialsData": [
    {
      "@odata.type": "microsoft.graph.verifiedCredentialData"
    }
  ]
}