Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/FormUsedBy.md
2025-04-01 09:23:12 -04:00

1.0 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2025-form-used-by FormUsedBy FormUsedBy FormUsedBy pythonsdk
python
Python
sdk
FormUsedBy
V2025FormUsedBy
/tools/sdk/python/v2025/models/form-used-by
SDK
Software Development Kit
FormUsedBy
V2025FormUsedBy

FormUsedBy

Properties

Name Type Description Notes
type Enum [ 'WORKFLOW', 'SOURCE', 'MySailPoint' ] FormUsedByType value. WORKFLOW FormUsedByTypeWorkflow SOURCE FormUsedByTypeSource MySailPoint FormUsedByType [optional]
id str Unique identifier of the system using the form. [optional]
name str Name of the system using the form. [optional]
}

Example

from sailpoint.v2025.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]