Skip to main content

ApprovalCancelRequest

Request body for cancelling a single approval request.

Properties

NameTypeDescriptionNotes
commentstrOptional comment associated with the cancel request.[optional]
}

Example

from sailpoint.approvals.models.approval_cancel_request import ApprovalCancelRequest

approval_cancel_request = ApprovalCancelRequest(
comment='Cancelled by administrator'
)

[Back to top]