<!--
{
  "availability" : [
    "iOS: 11.0.0 -",
    "iPadOS: 11.0.0 -",
    "macCatalyst: 13.1.0 -",
    "visionOS: 1.0.0 -"
  ],
  "documentType" : "symbol",
  "framework" : "SiriKit",
  "identifier" : "/documentation/Intents/INSendRideFeedbackIntentHandling/handle(sendRideFeedback:completion:)",
  "metadataVersion" : "0.1.0",
  "role" : "Instance Method",
  "symbol" : {
    "kind" : "Instance Method",
    "modules" : [
      "Intents"
    ],
    "preciseIdentifier" : "c:objc(pl)INSendRideFeedbackIntentHandling(im)handleSendRideFeedback:completion:"
  },
  "title" : "handle(sendRideFeedback:completion:)"
}
-->

# handle(sendRideFeedback:completion:)

Handles the recording of feedback for the specified ride.

```
func handle(sendRideFeedback sendRideFeedbackintent: INSendRideFeedbackIntent, completion: @escaping @Sendable (INSendRideFeedbackIntentResponse) -> Void)
```

```
func handle(sendRideFeedback sendRideFeedbackintent: INSendRideFeedbackIntent) async -> INSendRideFeedbackIntentResponse
```

## Parameters

`sendRideFeedbackintent`

The intent object containing details about the user’s request. The information in this object has already been confirmed by your handler object.

`completion`

The handler block to execute with your response. 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:

- response: The [`INSendRideFeedbackIntentResponse`](/documentation/Intents/INSendRideFeedbackIntentResponse) object containing the status of applying the feedback. This parameter must not be `nil`.

## Discussion

In your implementation of this method, apply the feedback in the provided intent object to the specified ride.

---

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)