--- id: account title: Account pagination_label: Account sidebar_label: Account sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'Account', 'Account'] slug: /tools/sdk/python/v3/models/account tags: ['SDK', 'Software Development Kit', 'Account', 'Account'] --- # Account ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | System-generated unique ID of the Object | [optional] [readonly] **name** | **str** | Name of the Object | [required] **created** | **datetime** | Creation date of the Object | [optional] [readonly] **modified** | **datetime** | Last modification date of the Object | [optional] [readonly] **source_id** | **str** | The unique ID of the source this account belongs to | [required] **source_name** | **str** | The display name of the source this account belongs to | [required] **identity_id** | **str** | The unique ID of the identity this account is correlated to | [optional] **cloud_lifecycle_state** | **str** | The lifecycle state of the identity this account is correlated to | [optional] **identity_state** | **str** | The identity state of the identity this account is correlated to | [optional] **connection_type** | **str** | The connection type of the source this account is from | [optional] **is_machine** | **bool** | Indicates if the account is of machine type | [optional] [default to False] **recommendation** | [**AccountAllOfRecommendation**](account-all-of-recommendation) | | [optional] **attributes** | **map[string]object** | The account attributes that are aggregated | [required] **authoritative** | **bool** | Indicates if this account is from an authoritative source | [required] **description** | **str** | A description of the account | [optional] **disabled** | **bool** | Indicates if the account is currently disabled | [required] **locked** | **bool** | Indicates if the account is currently locked | [required] **native_identity** | **str** | The unique ID of the account generated by the source system | [required] **system_account** | **bool** | If true, this is a user account within IdentityNow. If false, this is an account from a source system. | [required] **uncorrelated** | **bool** | Indicates if this account is not correlated to an identity | [required] **uuid** | **str** | The unique ID of the account as determined by the account schema | [optional] **manually_correlated** | **bool** | Indicates if the account has been manually correlated to an identity | [required] **has_entitlements** | **bool** | Indicates if the account has entitlements | [required] **identity** | [**AccountAllOfIdentity**](account-all-of-identity) | | [optional] **source_owner** | [**AccountAllOfSourceOwner**](account-all-of-source-owner) | | [optional] **features** | **str** | A string list containing the owning source's features | [optional] **origin** | **Enum** [ 'AGGREGATED', 'PROVISIONED' ] | The origin of the account either aggregated or provisioned | [optional] **owner_identity** | [**AccountAllOfOwnerIdentity**](account-all-of-owner-identity) | | [optional] } ## Example ```python from sailpoint.v3.models.account import Account account = Account( id='id12345', name='aName', created='2015-05-28T14:07:17Z', modified='2015-05-28T14:07:17Z', source_id='2c9180835d2e5168015d32f890ca1581', source_name='Employees', identity_id='2c9180835d2e5168015d32f890ca1581', cloud_lifecycle_state='active', identity_state='ACTIVE', connection_type='direct', is_machine=True, recommendation=, 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.v3.models.account_all_of_identity.Account_allOf_identity( id = '2c918084660f45d6016617daa9210584', type = 'IDENTITY', name = 'John Doe', ), source_owner=sailpoint.v3.models.account_all_of_source_owner.Account_allOf_sourceOwner( id = '2c918084660f45d6016617daa9210584', type = 'IDENTITY', name = 'Adam Kennedy', ), features='ENABLE', origin='AGGREGATED', owner_identity= ) ``` [[Back to top]](#)