Skip to main content

ApprovalApproveRequest

Approval Approve Request

Properties

NameTypeDescriptionNotes
additional_attributesmap[string]strAdditional attributes as key-value pairs that are not part of the standard schema but can be included for custom data.[optional]
commentstrComment associated with the request.[optional]
override_approver_idstrOptional field for ServiceNow Administrators to specify which member of a governance group to override/approve on behalf of.[optional]
}

Example

from sailpoint.approvals.models.approval_approve_request import ApprovalApproveRequest

approval_approve_request = ApprovalApproveRequest(
additional_attributes={"additionalProp1":"string","additionalProp2":"string","additionalProp3":"string"},
comment='comment',
override_approver_id='12345678901234567890123456789012'
)

[Back to top]