<!--
{
  "availability" : [
    "iOS: 13.0.0 - 27.0.0",
    "iPadOS: 13.0.0 - 27.0.0",
    "macCatalyst: 13.1.0 - 27.0.0",
    "visionOS: 1.0.0 - 27.0.0",
    "watchOS: 6.0.0 - 27.0.0"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INSnoozeTasksIntentHandling/confirm(intent:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INSnoozeTasksIntentHandling(im)confirmSnoozeTasks:completion:"
  },
  "title" : "confirm(intent:completion:)"
}
-->

# confirm(intent:completion:)

Confirms whether you can snooze the task.

```
optional func confirm(intent: INSnoozeTasksIntent, completion: @escaping @Sendable (INSnoozeTasksIntentResponse) -> Void)
```

## Parameters

`intent`

The intent object that contains details about the user’s request. This object’s information has already been resolved by your handler object.

`completion`

The handler block to execute with your response. You must execute this handler while implementing this method. The handler has no return value and takes the following parameter:

- response: The [`INSnoozeTasksIntentResponse`](/documentation/Intents/INSnoozeTasksIntentResponse) object that contains the details to confirm with the user. This parameter must not be `nil`.

## Discussion

Implement this method to validate that you can snooze the tasks, but don’t do so yet. If snoozing tasks involves contacting a remote server, first validate that your server is available and ready to handle the requests, then in your implementation, execute the provided completion block with a response object that indicates your app’s readiness to snooze the tasks.

---

Copyright &copy; 2026 Apple Inc. All rights reserved. | [Terms of Use](https://www.apple.com/legal/internet-services/terms/site.html) | [Privacy Policy](https://www.apple.com/privacy/privacy-policy)