---
title: "handle(sendRideFeedback:completion:)"
framework: intents
role: symbol
role_heading: Instance Method
path: "intents/insendridefeedbackintenthandling/handle(sendridefeedback:completion:)"
---

# handle(sendRideFeedback:completion:)

Handles the recording of feedback for the specified ride.

## Declaration

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

```swift
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:

## Discussion

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