Skip to main content

ApprovalReference

Reference objects related to the approval

Properties

NameTypeDescriptionNotes
idstrId of the reference object[optional]
typestrWhat reference object does this ID correspond to[optional]
namestrName of the reference object[optional]
emailstrEmail associated with the reference object[optional]
serial_orderintThe serial step of the identity in the approval. For example serialOrder 1 is the first identity to action in an approval request chain. Parallel approvals are set to 0.[optional]
}

Example

from sailpoint.v2025.models.approval_reference import ApprovalReference

approval_reference = ApprovalReference(
id='64012350-8fd9-4f6c-a170-1fe123683899',
type='AccessRequestId',
name='Access Request',
email='[email protected]',
serial_order=0
)

[Back to top]