Skip to main content

AccessRequestedAccount

Properties

NameTypeDescriptionNotes
idstrthe ID of the account in the database[optional]
native_identitystrthe native identifier of the account[optional]
display_namestrthe display name of the account[optional]
source_idstrthe ID of the source for this account[optional]
source_namestrthe name of the source for this account[optional]
entitlement_countintthe number of entitlements on this account[optional]
access_typestrthis value is always "account"[optional]
}

Example

from sailpoint.v2024.models.access_requested_account import AccessRequestedAccount

access_requested_account = AccessRequestedAccount(
id='2c91808a77ff216301782327a50f09bf',
native_identity='dr.arden.ogahn.d',
display_name='Adam Archer',
source_id='8a80828f643d484f01643e14202e206f',
source_name='JDBC Entitlements Source',
entitlement_count=2,
access_type='account'
)

[Back to top]