Skip to main content

Reviewdecision

Properties

NameTypeDescriptionNotes
idstrThe id of the review decision[required]
decisionCertificationdecision[required]
proposed_end_datedatetimeThe date at which a user's access should be taken away. Should only be set for REVOKE decisions.[optional]
bulkboolIndicates whether decision should be marked as part of a larger bulk decision[required]
recommendationReviewrecommendation[optional]
commentsstrComments recorded when the decision was made[optional]
}

Example

from sailpoint.certifications.models.reviewdecision import Reviewdecision

reviewdecision = Reviewdecision(
id='ef38f94347e94562b5bb8424a56397d8',
decision='APPROVE',
proposed_end_date='2017-07-11T18:45:37.098Z',
bulk=True,
recommendation=sailpoint.certifications.models.review_recommendation.Review Recommendation(
recommendation = '',
reasons = ["Reason 1","Reason 2"],
timestamp = '2020-06-01T13:49:37.385Z', ),
comments='This user no longer needs access to this source'
)

[Back to top]