Skip to main content

lifecycle_workflows_workflow_templates

Creates, updates, deletes, gets or lists a lifecycle_workflows_workflow_templates resource.

Overview

Namelifecycle_workflows_workflow_templates
TypeResource
Identra_id.identity_governance.lifecycle_workflows_workflow_templates

Fields

The following fields are returned by SELECT queries:

Retrieved navigation property

NameDatatypeDescription
idstringThe unique identifier for an entity. Read-only.
categorystring (joiner, leaver, unknownFutureValue, mover) (title: lifecycleWorkflowCategory)
descriptionstringThe description of the workflowTemplate.
displayNamestringThe display name of the workflowTemplate.Supports $filter(eq, ne) and $orderby.
executionConditionsConditions describing when to execute the workflow and the criteria to identify in-scope subject set.
tasksarrayRepresents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectworkflow_template_idRead the properties and relationships of a workflowTemplate object.
listselectGet a list of the workflowTemplate objects and their properties.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
workflow_template_idstringThe unique identifier of workflowTemplate

SELECT examples

Read the properties and relationships of a workflowTemplate object.

SELECT
id,
category,
description,
displayName,
executionConditions,
tasks
FROM entra_id.identity_governance.lifecycle_workflows_workflow_templates
WHERE workflow_template_id = '{{ workflow_template_id }}' -- required
;