<!--
{
  "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/INPauseWorkoutIntent",
  "metadataVersion" : "0.1.0",
  "role" : "Class",
  "symbol" : {
    "kind" : "Class",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(cs)INPauseWorkoutIntent"
  },
  "title" : "INPauseWorkoutIntent"
}
-->

# INPauseWorkoutIntent

A request to pause the current workout that also stops the gathering of workout data.

```
class INPauseWorkoutIntent
```

## Overview

SiriKit creates an [`INPauseWorkoutIntent`](/documentation/Intents/INPauseWorkoutIntent) object when the user asks to pause a currently running workout. Pausing a workout stops the gathering of workout data without clearing the current workout progress information. Use this intent object to validate workout parameters.

To handle this intent, the handler object in your Intents extension must adopt the [`INPauseWorkoutIntentHandling`](/documentation/Intents/INPauseWorkoutIntentHandling) protocol. Your handler should confirm the request and create an [`INPauseWorkoutIntentResponse`](/documentation/Intents/INPauseWorkoutIntentResponse) object that indicates it’s possible to pause the workout. SiriKit launches your app and passes it an <doc://com.apple.documentation/documentation/Foundation/NSUserActivity> object that your app must then use to pause the workout.

### Additional Intent Attributes

The following table lists additional attributes of this intent object:

|Attribute                      |Description                   |
|-------------------------------|------------------------------|
|Supported by                   |Siri Intents, Siri Suggestions|
|Always requires unlocked device|Yes                           |

## Topics

### Creating the Intent Object

[`init(workoutName:)`](/documentation/Intents/INPauseWorkoutIntent/init(workoutName:))

Initializes an intent object with the specified workout name.

### Specifying Workout Details

[`workoutName`](/documentation/Intents/INPauseWorkoutIntent/workoutName)

The name of the workout to pause.



---

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)