Skip to main content

FormSubmitted

Properties

NameTypeDescriptionNotes
submitted_atdatetimeDate and time when the user submitted the form.[required]
tenant_idstrISC tenant's unique identifier.[required]
form_instance_idstrForm instance's unique identifier.[required]
form_definition_idstrForm definition's unique identifier.[required]
namestrForm's name.[required]
created_byFormSubmittedCreatedBy[required]
submitted_byFormSubmittedSubmittedBy[required]
form_datamap[string]objectData in the submitted form.[required]
}

Example

from sailpoint.triggers.models.form_submitted import FormSubmitted

form_submitted = FormSubmitted(
submitted_at='2020-06-29T22:01:50.474Z',
tenant_id='2c9180845d1edece015d27a9717c3e19',
form_instance_id='2c9180835d2e5168015d32f890ca1582',
form_definition_id='2c9180835d2e5168015d32f890ca1581',
name='Open Service Request',
created_by=sailpoint.triggers.models.form_submitted_created_by.FormSubmitted_createdBy(
type = 'WORKFLOW_EXECUTION',
id = '2c9180845d1edece015d27a9717c3e19', ),
submitted_by=sailpoint.triggers.models.form_submitted_submitted_by.FormSubmitted_submittedBy(
type = 'IDENTITY',
id = '2c9180845d1edece015d27a9717c3e19',
name = 'Rob.Robertson', ),
form_data={"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!"}
)

[Back to top]