Edit

taskProcessingResult 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.

Result of a workflow task that was executed for a specific user because the workflow task was part of the lifecycle workflow for which the user fulfilled the execution conditions.

Inherits from entity.

Methods

Method Return type Description
Resume None Resumes the taskProcessingResult as part of the Azure Logic App integration.

Properties

Property Type Description
completedDateTime DateTimeOffset The date time when taskProcessingResult execution ended. Value is null if task execution is still in progress.

Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
createdDateTime DateTimeOffset The date time when the taskProcessingResult was created.

Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.
failureReason String Describes why the taskProcessingResult failed.
id String Identifier used for individually addressing a specific task processing result. Inherited from entity.

Supports $filter(eq, ne) and $orderby.
processingInfo String Additional human-readable context about the task processing outcome. This property contains information about edge cases where the task completed successfully but the expected action wasn't performed because the target was already in the desired state, such as when the user was already a member of the specified group. Returns null when no additional context is needed. Nullable.
processingStatus microsoft.graph.identityGovernance.lifecycleWorkflowProcessingStatus Describes the execution status of the taskProcessingResult.

Supports $filter(eq, ne) and $orderby.
startedDateTime DateTimeOffset The date time when taskProcessingResult execution started. Value is null if task execution hasn't started yet.

Supports $filter(lt, le, gt, ge, eq, ne) and $orderby.

Relationships

Relationship Type Description
subject user The unique identifier of the Microsoft Entra user targeted for the task execution.

Supports $filter(eq, ne) and $expand.
task task The related workflow task

JSON representation

The following JSON representation shows the resource type.

{
  "@odata.type": "#microsoft.graph.identityGovernance.taskProcessingResult",
  "id": "String (identifier)",
  "completedDateTime": "String (timestamp)",
  "createdDateTime": "String (timestamp)",
  "failureReason": "String",
  "processingInfo": "String",
  "processingStatus": "String",
  "startedDateTime": "String (timestamp)"
}