Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/Certification.md
2025-07-25 19:23:51 +00:00

4.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
v2024-certification Certification Certification Certification pythonsdk
python
Python
sdk
Certification
V2024Certification
/tools/sdk/python/v2024/models/certification
SDK
Software Development Kit
Certification
V2024Certification

Certification

Properties

Name Type Description Notes
id str id of the certification [optional]
name str name of the certification [optional]
campaign CampaignReference [optional]
completed bool Have all decisions been made? [optional]
identities_completed int The number of identities for whom all decisions have been made and are complete. [optional]
identities_total int The total number of identities in the Certification, both complete and incomplete. [optional]
created datetime created date [optional]
modified datetime modified date [optional]
decisions_made int The number of approve/revoke/acknowledge decisions that have been made. [optional]
decisions_total int The total number of approve/revoke/acknowledge decisions. [optional]
due datetime The due date of the certification. [optional]
signed datetime The date the reviewer signed off on the Certification. [optional]
reviewer Reviewer [optional]
reassignment Reassignment [optional]
has_errors bool Identifies if the certification has an error [optional]
error_message str Description of the certification error [optional]
phase CertificationPhase [optional]
}

Example

from sailpoint.v2024.models.certification import Certification

certification = Certification(
id='2c9180835d2e5168015d32f890ca1581',
name='Source Owner Access Review for Employees [source]',
campaign=sailpoint.v2024.models.campaign_reference.Campaign Reference(
                    id = 'ef38f94347e94562b5bb8424a56397d8', 
                    name = 'Campaign Name', 
                    type = 'CAMPAIGN', 
                    campaign_type = 'MANAGER', 
                    description = 'A description of the campaign', 
                    correlated_status = 'CORRELATED', 
                    mandatory_comment_requirement = 'NO_DECISIONS', ),
completed=True,
identities_completed=5,
identities_total=10,
created='2018-06-25T20:22:28.104Z',
modified='2018-06-25T20:22:28.104Z',
decisions_made=20,
decisions_total=40,
due='2018-10-19T13:49:37.385Z',
signed='2018-10-19T13:49:37.385Z',
reviewer=sailpoint.v2024.models.reviewer.Reviewer(
                    id = 'ef38f94347e94562b5bb8424a56397d8', 
                    name = 'Reviewer Name', 
                    email = 'reviewer@test.com', 
                    type = 'IDENTITY', 
                    created = '2018-06-25T20:22:28.104Z', 
                    modified = '2018-06-25T20:22:28.104Z', ),
reassignment=sailpoint.v2024.models.reassignment.Reassignment(
                    from = sailpoint.v2024.models.certification_reference.Certification Reference(
                        id = 'ef38f94347e94562b5bb8424a56397d8', 
                        name = 'Certification Name', 
                        type = 'CERTIFICATION', 
                        reviewer = sailpoint.v2024.models.reviewer.Reviewer(
                            id = 'ef38f94347e94562b5bb8424a56397d8', 
                            name = 'Reviewer Name', 
                            email = 'reviewer@test.com', 
                            type = 'IDENTITY', 
                            created = '2018-06-25T20:22:28.104Z', 
                            modified = '2018-06-25T20:22:28.104Z', ), ), 
                    comment = 'Reassigned for a reason', ),
has_errors=False,
error_message='The certification has an error',
phase='ACTIVE'
)

[Back to top]