Skip to main content

BaseAccount

Properties

NameTypeDescriptionNotes
idstrThe unique ID of the referenced object.[optional]
namestrThe human readable name of the referenced object.[optional]
account_idstrAccount ID.[optional]
sourceAccountSource[optional]
disabledboolIndicates whether the account is disabled.[optional] [default to False]
lockedboolIndicates whether the account is locked.[optional] [default to False]
privilegedboolIndicates whether the account is privileged.[optional] [default to False]
manually_correlatedboolIndicates whether the account has been manually correlated to an identity.[optional] [default to False]
password_last_setdatetimeA date-time in ISO-8601 format[optional]
entitlement_attributesmap[string]objectMap or dictionary of key/value pairs.[optional]
createddatetimeISO-8601 date-time referring to the time when the object was created.[optional]
supports_password_changeboolIndicates whether the account supports password change.[optional] [default to False]
account_attributesmap[string]objectMap or dictionary of key/value pairs.[optional]
}

Example

from sailpoint.v2024.models.base_account import BaseAccount

base_account = BaseAccount(
id='2c91808568c529c60168cca6f90c1313',
name='John Doe',
account_id='John.Doe',
source=,
disabled=False,
locked=False,
privileged=False,
manually_correlated=False,
password_last_set='2018-06-25T20:22:28.104Z',
entitlement_attributes={moderator=true, admin=true, trust_level=4},
created='2018-06-25T20:22:28.104Z',
supports_password_change=False,
account_attributes={type=global, admin=true, trust_level=4}
)

[Back to top]