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

# resolveStatus(for:with:)

Resolves the bill status to use during your search.

## Declaration

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

```swift
optional func resolveStatus(for intent: INSearchForBillsIntent) async -> INPaymentStatusResolutionResult
```

## 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 any questions about the status of a bill. Use the status property of the intent object to identify the status type to search. If the specified status type is one that your app supports, return a successful resolution with that type. If the status type is INPaymentStatus.unknown, return a resolution of not required from this method. When the status type is unknown, don’t filter the subsequent search results based on the bill’s current status. Instead, return all bills whether they’re pending, completed, canceled, or failed.

## See Also

### Resolving the Intent Parameters

- [resolveBillPayee(for:with:)](intents/insearchforbillsintenthandling/resolvebillpayee(for:with:).md)
- [resolveBillType(for:with:)](intents/insearchforbillsintenthandling/resolvebilltype(for:with:).md)
- [resolveDueDateRange(for:with:)](intents/insearchforbillsintenthandling/resolveduedaterange(for:with:).md)
- [resolvePaymentDateRange(for:with:)](intents/insearchforbillsintenthandling/resolvepaymentdaterange(for:with:).md)
