--- id: v2024-form-instance-response title: FormInstanceResponse pagination_label: FormInstanceResponse sidebar_label: FormInstanceResponse sidebar_class_name: powershellsdk keywords: ['powershell', 'PowerShell', 'sdk', 'FormInstanceResponse', 'V2024FormInstanceResponse'] slug: /tools/sdk/powershell/v2024/models/form-instance-response tags: ['SDK', 'Software Development Kit', 'FormInstanceResponse', 'V2024FormInstanceResponse'] --- # FormInstanceResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **Created** | Pointer to **System.DateTime** | Created is the date the form instance was assigned | [optional] **CreatedBy** | Pointer to [**FormInstanceCreatedBy**](form-instance-created-by) | | [optional] **Expire** | Pointer to **String** | Expire is the maximum amount of time that a form can be in progress. After this time is reached then the form will be moved to a CANCELED state automatically. The user will no longer be able to complete the submission. When a form instance is expires an audit log will be generated for that record | [optional] **FormConditions** | Pointer to [**[]FormCondition**](form-condition) | FormConditions is the conditional logic that modify the form dynamically modify the form as the recipient is interacting out the form | [optional] **FormData** | Pointer to [**map[string]AnyType**]https://learn.microsoft.com/en-us/powershell/scripting/lang-spec/chapter-04?view=powershell-7.4 | FormData is the data provided by the form on submit. The data is in a key -> value map | [optional] **FormDefinitionId** | Pointer to **String** | FormDefinitionID is the id of the form definition that created this form | [optional] **FormElements** | Pointer to [**[]FormElement**](form-element) | FormElements is the configuration of the form, this would be a repeat of the fields from the form-config | [optional] **FormErrors** | Pointer to [**[]FormError**](form-error) | FormErrors is an array of form validation errors from the last time the form instance was transitioned to the SUBMITTED state. If the form instance had validation errors then it would be moved to the IN PROGRESS state where the client can retrieve these errors | [optional] **FormInput** | Pointer to [**map[string]SystemCollectionsHashtable**]https://learn.microsoft.com/en-us/dotnet/api/system.collections.hashtable?view=net-9.0 | FormInput is an object of form input labels to value | [optional] **Id** | Pointer to **String** | Unique guid identifying this form instance | [optional] **Modified** | Pointer to **System.DateTime** | Modified is the last date the form instance was modified | [optional] **Recipients** | Pointer to [**[]FormInstanceRecipient**](form-instance-recipient) | Recipients references to the recipient of a form. The recipients are those who are responsible for filling out a form and completing it | [optional] **StandAloneForm** | Pointer to **Boolean** | StandAloneForm is a boolean flag to indicate if this form should be available for users to complete via the standalone form UI or should this only be available to be completed by as an embedded form | [optional] [default to $false] **StandAloneFormUrl** | Pointer to **String** | StandAloneFormURL is the URL where this form may be completed by the designated recipients using the standalone form UI | [optional] **State** | Pointer to **Enum** [ "ASSIGNED", "IN_PROGRESS", "SUBMITTED", "COMPLETED", "CANCELLED" ] | State the state of the form instance ASSIGNED FormInstanceStateAssigned IN_PROGRESS FormInstanceStateInProgress SUBMITTED FormInstanceStateSubmitted COMPLETED FormInstanceStateCompleted CANCELLED FormInstanceStateCancelled | [optional] ## Examples - Prepare the resource ```powershell $FormInstanceResponse = Initialize-PSSailpoint.V2024FormInstanceResponse -Created 2023-07-12T20:14:57.744860Z ` -CreatedBy null ` -Expire 2023-08-12T20:14:57.74486Z ` -FormConditions null ` -FormData {department=Engineering} ` -FormDefinitionId 49841cb8-00a5-4fbd-9888-8bbb28d48331 ` -FormElements null ` -FormErrors null ` -FormInput {input1=Sales} ` -Id 06a2d961-07fa-44d1-8d0a-2f6470e30fd2 ` -Modified 2023-07-12T20:14:57.744860Z ` -Recipients null ` -StandAloneForm false ` -StandAloneFormUrl https://my-org.identitynow.com/ui/d/forms/00000000-0000-0000-0000-000000000000 ` -State ASSIGNED ``` - Convert the resource to JSON ```powershell $FormInstanceResponse | ConvertTo-JSON ``` [[Back to top]](#)