Edit

customTaskExtensionResponseData resource type

Namespace: microsoft.graph.identityGovernance

Represents the data returned from customTaskExtension callouts. This object is configured in the data property of the customExtensionCalloutResponse resource.

Inherits from customExtensionData.

Methods

None.

Properties

Property Type Description
operationStatus microsoft.graph.identityGovernance.customTaskExtensionOperationStatus The operation status reported by the custom task extension. The possible values are: completed, failed, unknownFutureValue.
statusReasons String collection A collection of status reason strings. May be empty.
targetSubject microsoft.graph.identityGovernance.workflowSubject The workflow subject that was processed by the custom task extension.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.identityGovernance.customTaskExtensionResponseData",
  "operationStatus": "String",
  "targetSubject": {
    "@odata.type": "microsoft.graph.identityGovernance.workflowSubject"
  },
  "statusReasons": [
    "String"
  ]
}