Skip to main content

FormSubmittedSubmittedBy

Identity who submitted the form.

Properties

NameTypeDescriptionNotes
typeEnum [ 'IDENTITY' ]DTO type of the identity who submitted the form.[required]
idstrUnique identifier of the identity who submitted the form.[required]
namestrName of the identity who submitted the form.[required]
}

Example

from sailpoint.triggers.models.form_submitted_submitted_by import FormSubmittedSubmittedBy

form_submitted_submitted_by = FormSubmittedSubmittedBy(
type='IDENTITY',
id='2c9180845d1edece015d27a9717c3e19',
name='Rob.Robertson'
)

[Back to top]