---
title: "deleteSearchableItems(withIdentifiers:completionHandler:)"
framework: corespotlight
role: symbol
role_heading: Instance Method
path: "corespotlight/cssearchableindex/deletesearchableitems(withidentifiers:completionhandler:)"
---

# deleteSearchableItems(withIdentifiers:completionHandler:)

Removes from the index all items with the specified identifiers.

## Declaration

```swift
func deleteSearchableItems(withIdentifiers identifiers: [String], completionHandler: (@Sendable ((any Error)?) -> Void)? = nil)
```

```swift
func deleteSearchableItems(withIdentifiers identifiers: [String]) async throws
```

## Parameters

- `identifiers`: An array of identifiers that specify the items to delete.
- `completionHandler`: The block that’s called when the data has been journaled by the index, which means that the index makes a note that it has to perform this operation. If the completion handler returns an error, it means that the data wasn’t journaled correctly and the client should retry the request. The block receives the following parameter:

## Discussion

Discussion important: You can call this method from synchronous code using a completion handler, as shown on this page, or you can call it as an asynchronous method that has the following declaration: func deleteSearchableItems(withIdentifiers identifiers: [String]) async throws For information about concurrency and asynchronous code in Swift, see Calling Objective-C APIs Asynchronously. The searchableIndex(_:reindexSearchableItemsWithIdentifiers:acknowledgementHandler:) protocol method is called in the case that the journaling completed successfully, but the data was not able to be indexed for some reason.

## See Also

### Managing items in an index

- [indexSearchableItems(_:completionHandler:)](corespotlight/cssearchableindex/indexsearchableitems(_:completionhandler:).md)
- [deleteAllSearchableItems(completionHandler:)](corespotlight/cssearchableindex/deleteallsearchableitems(completionhandler:).md)
- [deleteSearchableItems(withDomainIdentifiers:completionHandler:)](corespotlight/cssearchableindex/deletesearchableitems(withdomainidentifiers:completionhandler:).md)
