Skip to main content

ExpansionItem

Properties

NameTypeDescriptionNotes
account_idstrThe ID of the account[optional]
causestrCause of the expansion item.[optional]
namestrThe name of the item[optional]
attribute_requestAttributeRequest[optional]
sourceAccountSource[optional]
idstrID of the expansion item[optional]
statestrState of the expansion item[optional]
}

Example

from sailpoint.v2024.models.expansion_item import ExpansionItem

expansion_item = ExpansionItem(
account_id='2c91808981f58ea601821c3e93482e6f',
cause='Role',
name='smartsheet-role',
attribute_request=sailpoint.v2024.models.attribute_request.AttributeRequest(
name = 'groups',
op = 'Add',
value = null, ),
source=,
id='ac2887ffe0e7435a8c18c73f7ae94c7b',
state='EXECUTING'
)

[Back to top]