Edit

awaitedWorkflowProcessingResult resource type

Namespace: microsoft.graph.identityGovernance

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

Represents the result of a workflow execution that waits for completion. This type is returned by the activateAndWait action on the workflow resource.

Properties

Property Type Description
processingStatus microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus The processing status of the workflow execution.
statusReasons String collection A collection of reasons for the current processing status. May be empty.
subject microsoft.graph.identityGovernance.workflowSubject The subject that was processed by the workflow.

Relationships

None.

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.identityGovernance.awaitedWorkflowProcessingResult",
  "processingStatus": "String",
  "statusReasons": [
    "String"
  ],
  "subject": {
    "@odata.type": "microsoft.graph.identityGovernance.workflowSubject"
  }
}