Skip to main content

WorkitemsForm

Properties

NameTypeDescriptionNotes
idstrID of the form[optional]
namestrName of the form[optional]
titlestrThe form title[optional]
subtitlestrThe form subtitle.[optional]
target_userstrThe name of the user that should be shown this form[optional]
sections[]SectiondetailsSections of the form[optional]
}

Example

from sailpoint.work_items.models.workitems_form import WorkitemsForm

workitems_form = WorkitemsForm(
id='2c9180835d2e5168015d32f890ca1581',
name='AccountSelection Form',
title='Account Selection for John.Doe',
subtitle='Please select from the following',
target_user='Jane.Doe',
sections=[
sailpoint.work_items.models.section_details.Section Details()
]
)

[Back to top]