Skip to main content

ApprovalApprovalCriteriaRejection

Criteria for rejection

Properties

NameTypeDescriptionNotes
calculation_typeEnum [ 'COUNT', 'PERCENT' ]This defines what the field "value" will be used as, either a count or percentage of the total approvers that need to reject[optional]
valueintThe value that needs to be met for the rejection criteria[optional]
}

Example

from sailpoint.v2025.models.approval_approval_criteria_rejection import ApprovalApprovalCriteriaRejection

approval_approval_criteria_rejection = ApprovalApprovalCriteriaRejection(
calculation_type='COUNT',
value=30
)

[Back to top]