---
title: "resolveStatus(for:with:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insearchfornotebookitemsintenthandling/resolvestatus(for:with:)"
---

# resolveStatus(for:with:)

Resolves the status value to use during the search.

## Declaration

```swift
optional func resolveStatus(for intent: INSearchForNotebookItemsIntent, with completion: @escaping @Sendable (INTaskStatusResolutionResult) -> Void)
```

```swift
optional func resolveStatus(for intent: INSearchForNotebookItemsIntent) async -> INTaskStatusResolutionResult
```

## Parameters

- `intent`: The intent object containing details about the user’s request. Use this object to get the initial information, if any, provided by the user.
- `completion`: The handler block to execute with the resolution. You must execute this handler at some point during your implementation of this method. This handler has no return value and takes the following parameter:

## Discussion

Discussion Implement this method to resolve the status to use during the search. Use this method to verify that you can search for tasks with the specified status. If you support searching based on the given status, return a successful resolution with the status value. If you do not support searching based on status, return a resolution indicating that the status is not required.

## See Also

### Resolving the Intent Parameters

- [resolveItemType(for:with:)](intents/insearchfornotebookitemsintenthandling/resolveitemtype(for:with:).md)
- [resolveTitle(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvetitle(for:with:).md)
- [resolveContent(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvecontent(for:with:).md)
- [resolveDateSearchType(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvedatesearchtype(for:with:).md)
- [resolveDateTime(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvedatetime(for:with:).md)
- [resolveLocation(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvelocation(for:with:).md)
- [resolveLocationSearchType(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvelocationsearchtype(for:with:).md)
- [resolveTaskPriority(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvetaskpriority(for:with:).md)
- [resolveTemporalEventTriggerTypes(for:with:)](intents/insearchfornotebookitemsintenthandling/resolvetemporaleventtriggertypes(for:with:).md)
