Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2025/Models/Revocability.md
2025-04-02 00:29:55 +00:00

1.1 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-revocability Revocability Revocability Revocability pythonsdk
python
Python
sdk
Revocability
V2025Revocability
/tools/sdk/python/v2025/models/revocability
SDK
Software Development Kit
Revocability
V2025Revocability

Revocability

Properties

Name Type Description Notes
approval_schemes []AccessProfileApprovalScheme List describing the steps involved in approving the revocation request. [optional]
}

Example

from sailpoint.v2025.models.revocability import Revocability

revocability = Revocability(
approval_schemes=[
                    sailpoint.v2025.models.access_profile_approval_scheme.AccessProfileApprovalScheme(
                        approver_type = 'GOVERNANCE_GROUP', 
                        approver_id = '46c79819-a69f-49a2-becb-12c971ae66c6', )
                    ]
)

[Back to top]