Skip to main content

AccessItemAccessProfileResponse

Properties

NameTypeDescriptionNotes
idstrthe access item id[optional]
access_typestrthe access item type. accessProfile in this case[optional]
display_namestrthe display name of the identity[optional]
source_namestrthe name of the source[optional]
entitlement_countintthe number of entitlements the access profile will create[required]
descriptionstrthe description for the access profile[optional]
source_idstrthe id of the source[optional]
app_refs[]AccessItemAccessProfileResponseAppRefsInnerthe list of app ids associated with the access profile[required]
remove_datestrthe date the access profile is no longer assigned to the specified identity[optional]
standaloneboolindicates whether the access profile is standalone[required]
revocableboolindicates whether the access profile is revocable[required]
}

Example

from sailpoint.beta.models.access_item_access_profile_response import AccessItemAccessProfileResponse

access_item_access_profile_response = AccessItemAccessProfileResponse(
id='2c918087763e69d901763e72e97f006f',
access_type='accessProfile',
display_name='Dr. Arden Rogahn MD',
source_name='DataScienceDataset',
entitlement_count=12,
description='AccessProfile - Workday/Citizenship access',
source_id='2793o32dwd',
app_refs=[{cloudAppId=8c190e6787aa4ed9a90bd9d5344523fb, cloudAppName=Sample App}, {cloudAppId=2c91808a77ff216301782327a50f09bf, cloudAppName=Another App}],
remove_date='2024-07-01T06:00:00.00Z',
standalone=False,
revocable=True
)

[Back to top]