Files
developer.sailpoint.com/docs/tools/sdk/python/Reference/V2024/Models/AccessItemAccountResponse.md
2025-07-25 15:10:03 +00:00

1.5 KiB

id, title, pagination_label, sidebar_label, sidebar_class_name, keywords, slug, tags
id title pagination_label sidebar_label sidebar_class_name keywords slug tags
v2024-access-item-account-response AccessItemAccountResponse AccessItemAccountResponse AccessItemAccountResponse pythonsdk
python
Python
sdk
AccessItemAccountResponse
V2024AccessItemAccountResponse
/tools/sdk/python/v2024/models/access-item-account-response
SDK
Software Development Kit
AccessItemAccountResponse
V2024AccessItemAccountResponse

AccessItemAccountResponse

Properties

Name Type Description Notes
id str the access item id [optional]
access_type str the access item type. account in this case [optional]
display_name str the display name of the identity [optional]
source_name str the name of the source [optional]
native_identity str the native identifier used to uniquely identify an acccount [required]
source_id str the id of the source [optional]
entitlement_count int the number of entitlements the account will create [optional]
}

Example

from sailpoint.v2024.models.access_item_account_response import AccessItemAccountResponse

access_item_account_response = AccessItemAccountResponse(
id='2c918087763e69d901763e72e97f006f',
access_type='account',
display_name='Dr. Arden Rogahn MD',
source_name='DataScienceDataset',
native_identity='dr.arden.ogahn.d',
source_id='2793o32dwd',
entitlement_count=12
)

[Back to top]