Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Requestability.md
2025-04-01 21:14:08 +00:00

1.6 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
v2024-requestability Requestability Requestability Requestability pythonsdk
python
Python
sdk
Requestability
V2024Requestability
/tools/sdk/python/v2024/models/requestability
SDK
Software Development Kit
Requestability
V2024Requestability

Requestability

Properties

Name Type Description Notes
comments_required bool Indicates whether the requester of the containing object must provide comments justifying the request. [optional] [default to False]
denial_comments_required bool Indicates whether an approver must provide comments when denying the request. [optional] [default to False]
reauthorization_required bool Indicates whether reauthorization is required for the request. [optional] [default to False]
approval_schemes []AccessProfileApprovalScheme List describing the steps involved in approving the request. [optional]
}

Example

from sailpoint.v2024.models.requestability import Requestability

requestability = Requestability(
comments_required=True,
denial_comments_required=True,
reauthorization_required=True,
approval_schemes=[
                    sailpoint.v2024.models.access_profile_approval_scheme.AccessProfileApprovalScheme(
                        approver_type = 'GOVERNANCE_GROUP', 
                        approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
                    ]
)

[Back to top]