Skip to main content

WorkflowBody

Properties

NameTypeDescriptionNotes
NameStringThe name of the workflow[optional]
OwnerWorkflowBodyOwner[optional]
DescriptionStringDescription of what the workflow accomplishes[optional]
DefinitionWorkflowDefinition[optional]
EnabledBooleanEnable or disable the workflow. Workflows cannot be created in an enabled state.[optional] [default to $false]
TriggerWorkflowTrigger[optional]

Examples

  • Prepare the resource
$WorkflowBody = Initialize-PSSailpoint.V2024WorkflowBody  -Name Send Email `
-Owner null `
-Description Send an email to the identity who's attributes changed. `
-Definition null `
-Enabled false `
-Trigger null
  • Convert the resource to JSON
$WorkflowBody | ConvertTo-JSON

[Back to top]