--- id: beta-access-profile-bulk-delete-response title: AccessProfileBulkDeleteResponse pagination_label: AccessProfileBulkDeleteResponse sidebar_label: AccessProfileBulkDeleteResponse sidebar_class_name: pythonsdk keywords: ['python', 'Python', 'sdk', 'AccessProfileBulkDeleteResponse', 'BetaAccessProfileBulkDeleteResponse'] slug: /tools/sdk/python/beta/models/access-profile-bulk-delete-response tags: ['SDK', 'Software Development Kit', 'AccessProfileBulkDeleteResponse', 'BetaAccessProfileBulkDeleteResponse'] --- # AccessProfileBulkDeleteResponse ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **task_id** | **str** | ID of the task which is executing the bulk deletion. This can be passed to the **/task-status** API to track status. | [optional] **pending** | **[]str** | List of IDs of Access Profiles which are pending deletion. | [optional] **in_use** | [**[]AccessProfileUsage**](access-profile-usage) | List of usages of Access Profiles targeted for deletion. | [optional] } ## Example ```python from sailpoint.beta.models.access_profile_bulk_delete_response import AccessProfileBulkDeleteResponse access_profile_bulk_delete_response = AccessProfileBulkDeleteResponse( task_id='2c9180867817ac4d017817c491119a20', pending=[2c91808876438bbb017668c21919ecca, 2c91808876438bb201766e129f151816], in_use=[ sailpoint.beta.models.access_profile_usage.AccessProfileUsage( access_profile_id = '2c91808876438bbb017668c21919ecca', used_by = [ sailpoint.beta.models.access_profile_usage_used_by_inner.AccessProfileUsage_usedBy_inner( type = 'ROLE', id = '2c8180857a9b3da0017aa03418480f9d', name = 'Manager Role', ) ], ) ] ) ``` [[Back to top]](#)