Skip to main content

Certificationtask

Properties

NameTypeDescriptionNotes
idstrThe ID of the certification task.[optional]
typeEnum [ 'REASSIGN', 'ADMIN_REASSIGN', 'COMPLETE_CERTIFICATION', 'FINISH_CERTIFICATION', 'COMPLETE_CAMPAIGN', 'ACTIVATE_CAMPAIGN', 'CAMPAIGN_CREATE', 'CAMPAIGN_DELETE' ]The type of the certification task. More values may be added in the future.[optional]
target_typeEnum [ 'CERTIFICATION', 'CAMPAIGN' ]The type of item that is being operated on by this task whose ID is stored in the targetId field.[optional]
target_idstrThe ID of the item being operated on by this task.[optional]
statusEnum [ 'QUEUED', 'IN_PROGRESS', 'SUCCESS', 'ERROR' ]The status of the task.[optional]
errors[]ErrormessagedtoList of error messages[optional]
reassignment_trail_dtos[]ReassignmenttraildtoReassignment trails that lead to self certification identity[optional]
createddatetimeThe date and time on which this task was created.[optional]
}

Example

from sailpoint.certifications.models.certificationtask import Certificationtask

certificationtask = Certificationtask(
id='2c918086719eec070171a7e3355a360a',
type='ADMIN_REASSIGN',
target_type='CAMPAIGN',
target_id='2c918086719eec070171a7e3355a834c',
status='QUEUED',
errors={"locale":"en-US","localeOrigin":"DEFAULT","text":"Error Message"},
reassignment_trail_dtos={"previousOwner":"ef38f94347e94562b5bb8424a56397d8","newOwner":"ef38f94347e94562b5bb8424a56397a3","reassignmentType":"AUTOMATIC_REASSIGNMENT"},
created='2020-09-24T18:10:47.693Z'
)

[Back to top]