--- id: identity-with-new-access title: IdentityWithNewAccess pagination_label: IdentityWithNewAccess sidebar_label: IdentityWithNewAccess sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'IdentityWithNewAccess', 'IdentityWithNewAccess'] slug: /tools/sdk/python/v3/models/identity-with-new-access tags: ['SDK', 'Software Development Kit', 'IdentityWithNewAccess', 'IdentityWithNewAccess'] --- # IdentityWithNewAccess An identity with a set of access to be added ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **identity_id** | **str** | Identity id to be checked. | [required] **access_refs** | [**[]IdentityWithNewAccessAccessRefsInner**](identity-with-new-access-access-refs-inner) | The list of entitlements to consider for possible violations in a preventive check. | [required] } ## Example ```python from sailpoint.v3.models.identity_with_new_access import IdentityWithNewAccess identity_with_new_access = IdentityWithNewAccess( identity_id='2c91808568c529c60168cca6f90c1313', access_refs=[{type=ENTITLEMENT, id=2c918087682f9a86016839c050861ab1}, {type=ENTITLEMENT, id=2c918087682f9a86016839c0509c1ab2}] ) ``` [[Back to top]](#)