Skip to main content

Account

Properties

NameTypeDescriptionNotes
idstrSystem-generated unique ID of the Object[optional] [readonly]
namestrName of the Object[required]
createddatetimeCreation date of the Object[optional] [readonly]
modifieddatetimeLast modification date of the Object[optional] [readonly]
source_idstrThe unique ID of the source this account belongs to[required]
source_namestrThe display name of the source this account belongs to[required]
identity_idstrThe unique ID of the identity this account is correlated to[optional]
cloud_lifecycle_statestrThe lifecycle state of the identity this account is correlated to[optional]
identity_statestrThe identity state of the identity this account is correlated to[optional]
connection_typestrThe connection type of the source this account is from[optional]
is_machineboolIndicates if the account is of machine type[optional] [default to False]
recommendationRecommendation[optional]
attributesmap[string]objectThe account attributes that are aggregated[required]
authoritativeboolIndicates if this account is from an authoritative source[required]
descriptionstrA description of the account[optional]
disabledboolIndicates if the account is currently disabled[required]
lockedboolIndicates if the account is currently locked[required]
native_identitystrThe unique ID of the account generated by the source system[required]
system_accountboolIf true, this is a user account within IdentityNow. If false, this is an account from a source system.[required]
uncorrelatedboolIndicates if this account is not correlated to an identity[required]
uuidstrThe unique ID of the account as determined by the account schema[optional]
manually_correlatedboolIndicates if the account has been manually correlated to an identity[required]
has_entitlementsboolIndicates if the account has entitlements[required]
identityBaseReferenceDto[optional]
source_ownerBaseReferenceDto[optional]
featuresstrA string list containing the owning source's features[optional]
originEnum [ 'AGGREGATED', 'PROVISIONED' ]The origin of the account either aggregated or provisioned[optional]
owner_identityBaseReferenceDto[optional]
}

Example

from sailpoint.beta.models.account import Account

account = Account(
id='id12345',
name='aName',
created='2023-01-03T21:16:22.432Z',
modified='2023-01-03T21:16:22.432Z',
source_id='2c9180835d2e5168015d32f890ca1581',
source_name='Employees',
identity_id='2c9180835d2e5168015d32f890ca1581',
cloud_lifecycle_state='active',
identity_state='ACTIVE',
connection_type='direct',
is_machine=True,
recommendation=sailpoint.beta.models.recommendation.Recommendation(
type = 'MACHINE',
method = 'DISCOVERY', ),
attributes={firstName=SailPoint, lastName=Support, displayName=SailPoint Support},
authoritative=False,
description='',
disabled=False,
locked=False,
native_identity='552775',
system_account=False,
uncorrelated=False,
uuid='{b0dce506-d6d4-44d2-8a32-d9a5b21fb175}',
manually_correlated=False,
has_entitlements=True,
identity=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
source_owner=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', ),
features='ENABLE',
origin='AGGREGATED',
owner_identity=sailpoint.beta.models.base_reference_dto.BaseReferenceDto(
type = 'IDENTITY',
id = '2c91808568c529c60168cca6f90c1313',
name = 'William Wilson', )
)

[Back to top]