Skip to main content

ApprovalItems

Properties

NameTypeDescriptionNotes
idstrThe approval item's ID[optional]
accountstrThe account referenced by the approval item[optional]
applicationstrThe name of the application/source[optional]
namestrThe attribute's name[optional]
operationstrThe attribute's operation[optional]
valuestrThe attribute's value[optional]
stateWorkItemState[optional]
}

Example

from sailpoint.v2024.models.approval_items import ApprovalItems

approval_items = ApprovalItems(
id='2c9180835d2e5168015d32f890ca1581',
account='john.smith',
application='Active Directory',
name='emailAddress',
operation='update',
value='[email protected]',
state=
)

[Back to top]