<!--
{
  "availability" : [
    "iOS: 10.0.0 -",
    "iPadOS: 10.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -",
    "watchOS: 3.2.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INStartWorkoutIntentHandling",
  "metadataVersion" : "0.1.0",
  "role" : "Protocol",
  "symbol" : {
    "kind" : "Protocol",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INStartWorkoutIntentHandling"
  },
  "title" : "INStartWorkoutIntentHandling"
}
-->

# INStartWorkoutIntentHandling

An interface that handles requests to start a workout.

```
protocol INStartWorkoutIntentHandling : NSObjectProtocol
```

## Overview

Use the methods of the [`INStartWorkoutIntentHandling`](/documentation/Intents/INStartWorkoutIntentHandling) protocol to resolve, confirm, and handle requests to start a workout using your app. Adopt this protocol in an object of your Intents extension capable of validating the workout name or goals.

You don’t actually start a workout from your Intents extension. When your [`handle(intent:completion:)`](/documentation/Intents/INStartWorkoutIntentHandling/handle(intent:completion:)) returns, Siri launches your app and passes it an <doc://com.apple.documentation/documentation/Foundation/NSUserActivity> object that contains the [`INStartWorkoutIntent`](/documentation/Intents/INStartWorkoutIntent) object and your response. Your app uses the information in those objects to start the workout.

## Topics

### Resolving the Intent Parameters

[`resolveWorkoutName(for:with:)`](/documentation/Intents/INStartWorkoutIntentHandling/resolveWorkoutName(for:with:))

Resolves the workout name selected by the user.

[`resolveGoalValue(for:with:)`](/documentation/Intents/INStartWorkoutIntentHandling/resolveGoalValue(for:with:))

Resolves the numerical goal of a user’s workout.

[`resolveWorkoutGoalUnitType(for:with:)`](/documentation/Intents/INStartWorkoutIntentHandling/resolveWorkoutGoalUnitType(for:with:))

Resolves the units for the user’s workout goal.

[`resolveWorkoutLocationType(for:with:)`](/documentation/Intents/INStartWorkoutIntentHandling/resolveWorkoutLocationType(for:with:))

Resolves the location type of a user’s workout.

[`resolveIsOpenEnded(for:with:)`](/documentation/Intents/INStartWorkoutIntentHandling/resolveIsOpenEnded(for:with:))

Resolves whether the user’s workout is open ended.

### Confirming the Response

[`confirm(intent:completion:)`](/documentation/Intents/INStartWorkoutIntentHandling/confirm(intent:completion:))

Validates that your app is able to start the workout.

### Handling the Intent

[`handle(intent:completion:)`](/documentation/Intents/INStartWorkoutIntentHandling/handle(intent:completion:))

Handles starting the workout.



---

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)