Skip to main content

CertificationDto

Properties

NameTypeDescriptionNotes
campaign_refCampaignReference[required]
phaseCertificationPhase[required]
duedatetimeThe due date of the certification.[required]
signeddatetimeThe date the reviewer signed off on the certification.[required]
reviewerReviewer[required]
reassignmentReassignment[optional]
has_errorsboolIndicates it the certification has any errors.[required]
error_messagestrA message indicating what the error is.[optional]
completedboolIndicates if all certification decisions have been made.[required]
decisions_madeintThe number of approve/revoke/acknowledge decisions that have been made by the reviewer.[required]
decisions_totalintThe total number of approve/revoke/acknowledge decisions for the certification.[required]
entities_completedintThe number of entities (identities, access profiles, roles, etc.) for which all decisions have been made and are complete.[required]
entities_totalintThe total number of entities (identities, access profiles, roles, etc.) in the certification, both complete and incomplete.[required]
}

Example

from sailpoint.v2024.models.certification_dto import CertificationDto

certification_dto = CertificationDto(
campaign_ref=sailpoint.v2024.models.campaign_reference.CampaignReference(
id = 'ef38f94347e94562b5bb8424a56397d8',
name = 'Campaign Name',
type = 'CAMPAIGN',
campaign_type = 'MANAGER',
description = 'A description of the campaign',
correlated_status = 'CORRELATED',
mandatory_comment_requirement = 'NO_DECISIONS', ),
phase='ACTIVE',
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 = '[email protected]',
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.CertificationReference(
id = 'ef38f94347e94562b5bb8424a56397d8',
name = 'Certification Name',
type = 'CERTIFICATION',
reviewer = sailpoint.v2024.models.reviewer.Reviewer(
id = 'ef38f94347e94562b5bb8424a56397d8',
name = 'Reviewer Name',
email = '[email protected]',
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',
completed=False,
decisions_made=20,
decisions_total=40,
entities_completed=5,
entities_total=10
)

[Back to top]