Skip to main content

CreateFormDefinitionRequest

Properties

NameTypeDescriptionNotes
DescriptionStringDescription is the form definition description[optional]
FormConditions[]FormConditionFormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form[optional]
FormElements[]FormElementFormElements is a list of nested form elements[optional]
FormInput[]FormDefinitionInputFormInput is a list of form inputs that are required when creating a form-instance object[optional]
NameStringName is the form definition name[required]
OwnerFormOwner[required]
UsedBy[]FormUsedByUsedBy is a list of objects where when any system uses a particular form it reaches out to the form service to record it is currently being used[optional]

Examples

  • Prepare the resource
$CreateFormDefinitionRequest = Initialize-PSSailpoint.BetaCreateFormDefinitionRequest  -Description My form description `
-FormConditions null `
-FormElements null `
-FormInput null `
-Name My form `
-Owner null `
-UsedBy null
  • Convert the resource to JSON
$CreateFormDefinitionRequest | ConvertTo-JSON

[Back to top]