Skip to main content

ApprovalApprovalCriteriaApproval

Criteria for approval

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 approve[optional]
valueintThe value that needs to be met for the approval criteria[optional]
}

Example

from sailpoint.v2025.models.approval_approval_criteria_approval import ApprovalApprovalCriteriaApproval

approval_approval_criteria_approval = ApprovalApprovalCriteriaApproval(
calculation_type='COUNT',
value=70
)

[Back to top]