Skip to main content

CreateWorkflowRequest

Properties

NameTypeDescriptionNotes
NameStringThe name of the workflow[required]
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
$CreateWorkflowRequest = Initialize-PSSailpoint.V3CreateWorkflowRequest  -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
$CreateWorkflowRequest | ConvertTo-JSON

[Back to top]