Skip to main content

FormUsedBy

Properties

NameTypeDescriptionNotes
typeEnum [ 'WORKFLOW', 'SOURCE', 'MySailPoint' ]FormUsedByType value. WORKFLOW FormUsedByTypeWorkflow SOURCE FormUsedByTypeSource MySailPoint FormUsedByType[optional]
idstrUnique identifier of the system using the form.[optional]
namestrName of the system using the form.[optional]
}

Example

from sailpoint.beta.models.form_used_by import FormUsedBy

form_used_by = FormUsedBy(
type='WORKFLOW',
id='61940a92-5484-42bc-bc10-b9982b218cdf',
name='Access Request Form'
)

[Back to top]