---
title: "stopSendingUpdates(for:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/ingetcarpowerlevelstatusintenthandling/stopsendingupdates(for:)"
---

# stopSendingUpdates(for:)

Stops the delivery of regular power level updates for a particular electric vehicle.

## Declaration

```swift
optional func stopSendingUpdates(for intent: INGetCarPowerLevelStatusIntent)
```

## Parameters

- `intent`: The intent object that indicates which electric vehicle the power level updates relate to. The doc://com.apple.sirikit/documentation/Intents/INSpeakable/vocabularyIdentifier property of the doc://com.apple.sirikit/documentation/Intents/INGetCarPowerLevelStatusIntent/carName speakable string stores the unique doc://com.apple.sirikit/documentation/Intents/INCar/carIdentifier.

## Discussion

Discussion The system calls this method when it wants you to stop providing power level updates for a particular electric vehicle. Use this opportunity to perform any necessary cleanup and discard any references to the observer object that startSendingUpdates(for:to:) provides. To determine which vehicle the request relates to, you can extract the vehicle’s unique indentifer from the vocabularyIdentifier property of the intent’s carName speakable string. This is the same value as the carIdentifier in the vehicle’s corresponding INCar object that your INListCarsIntentHandling handler returns. important: An arbitrary thread of your Intents extension calls this method.

## See Also

### Providing Power Level Status Updates

- [startSendingUpdates(for:to:)](intents/ingetcarpowerlevelstatusintenthandling/startsendingupdates(for:to:).md)
