Skip to main content

IdentityCertificationDto

Properties

NameTypeDescriptionNotes
idstrid of the certification[optional]
namestrname of the certification[optional]
campaignCampaignReference[optional]
completedboolHave all decisions been made?[optional]
identities_completedintThe number of identities for whom all decisions have been made and are complete.[optional]
identities_totalintThe total number of identities in the Certification, both complete and incomplete.[optional]
createddatetimecreated date[optional]
modifieddatetimemodified date[optional]
decisions_madeintThe number of approve/revoke/acknowledge decisions that have been made.[optional]
decisions_totalintThe total number of approve/revoke/acknowledge decisions.[optional]
duedatetimeThe due date of the certification.[optional]
signeddatetimeThe date the reviewer signed off on the Certification.[optional]
reviewerReviewer[optional]
reassignmentReassignment[optional]
has_errorsboolIdentifies if the certification has an error[optional]
error_messagestrDescription of the certification error[optional]
phaseCertificationPhase[optional]
}

Example

from sailpoint.v2024.models.identity_certification_dto import IdentityCertificationDto

identity_certification_dto = IdentityCertificationDto(
id='2c9180835d2e5168015d32f890ca1581',
name='Source Owner Access Review for Employees [source]',
campaign=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', ),
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 = '[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',
phase='ACTIVE'
)

[Back to top]