Skip to main content

FormSubmitted

Properties

NameTypeDescriptionNotes
SubmittedAtSystem.DateTimeDate and time when the user submitted the form.[required]
TenantIdStringISC tenant's unique identifier.[required]
FormInstanceIdStringForm instance's unique identifier.[required]
FormDefinitionIdStringForm definition's unique identifier.[required]
NameStringForm's name.[required]
CreatedByFormSubmittedCreatedBy[required]
SubmittedByFormSubmittedSubmittedBy[required]
FormDatamap[string]AnyTypeData in the submitted form.[required]

Examples

  • Prepare the resource
$FormSubmitted = Initialize-FormSubmitted -SubmittedAt 2020-06-29T22:01:50.474Z `
-TenantId 2c9180845d1edece015d27a9717c3e19 `
-FormInstanceId 2c9180835d2e5168015d32f890ca1582 `
-FormDefinitionId 2c9180835d2e5168015d32f890ca1581 `
-Name Open Service Request `
-CreatedBy null `
-SubmittedBy null `
-FormData {"department":"IT","requestType":"New Laptop","laptop":"New Laptop type for Engineer","comments":"My laptop is running slowly, and I need to get a shiny new laptop to get my work done. Thanks!"}
  • Convert the resource to JSON
$FormSubmitted | ConvertTo-JSON

[Back to top]