lifecycle_workflows_workflow_templates
Creates, updates, deletes, gets or lists a lifecycle_workflows_workflow_templates resource.
Overview
| Name | lifecycle_workflows_workflow_templates |
| Type | Resource |
| Id | entra_id.identity_governance.lifecycle_workflows_workflow_templates |
Fields
The following fields are returned by SELECT queries:
- get
- list
Retrieved navigation property
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
category | string | (joiner, leaver, unknownFutureValue, mover) (title: lifecycleWorkflowCategory) |
description | string | The description of the workflowTemplate. |
displayName | string | The display name of the workflowTemplate.Supports $filter(eq, ne) and $orderby. |
executionConditions | | Conditions describing when to execute the workflow and the criteria to identify in-scope subject set. |
tasks | array | Represents the configured tasks to execute and their execution sequence within a workflow. This relationship is expanded by default. |
Retrieved collection
| Name | Datatype | Description |
|---|---|---|
id | string | The unique identifier for an entity. Read-only. |
category | string | (joiner, leaver, unknownFutureValue, mover) (title: lifecycleWorkflowCategory) |
description | string | The description of the workflowTemplate. |
displayName | string | The display name of the workflowTemplate.Supports $filter(eq, ne) and $orderby. |
executionConditions | | Conditions describing when to execute the workflow and the criteria to identify in-scope subject set. |
tasks | array | Represents 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | workflow_template_id | Read the properties and relationships of a workflowTemplate object. | |
list | select | Get 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.
| Name | Datatype | Description |
|---|---|---|
workflow_template_id | string | The unique identifier of workflowTemplate |
SELECT examples
- get
- list
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
;
Get a list of the workflowTemplate objects and their properties.
SELECT
id,
category,
description,
displayName,
executionConditions,
tasks
FROM entra_id.identity_governance.lifecycle_workflows_workflow_templates
;