Skip to main content

Approvalitemdetails

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.work_items.models.approvalitemdetails import Approvalitemdetails

approvalitemdetails = Approvalitemdetails(
id='2c9180835d2e5168015d32f890ca1581',
account='john.smith',
application='Active Directory',
name='emailAddress',
operation='update',
value='a@b.com',
state=
)

[Back to top]