Skip to main content

Accountv2

Details about the account.

Properties

NameTypeDescriptionNotes
idstrThe unique identifier of the account.[required]
namestrThe name of the account.[required]
native_identitystrThe unique ID of the account generated by the source system.[required]
uuidstrThe unique ID associated with this account.[required]
correlatedboolIndicates if the account is correlated to an identity.[required]
is_machineboolIndicates if the account is a machine account.[required]
originstrThe origin of the account.[required]
attributesmap[string]objectThe attributes of the account. The contents of attributes depends on the account schema for the source.[required]
}

Example

from sailpoint.triggers.models.accountv2 import Accountv2

accountv2 = Accountv2(
id='2c9180835d2e5168015d32f890ca1581',
name='john.doe',
native_identity='CN=John Doe,OU=Austin,OU=Americas,OU=Demo,DC=seri,DC=acme,DC=com',
uuid='b7264868-7201-415f-9118-b581d431c688',
correlated=True,
is_machine=False,
origin='Active Directory',
attributes={"firstname":"John","lastname":"Doe"}
)

[Back to top]