- HTTP request
 - Path parameters
 - Request body
 - Response body
 - Authorization scopes
 - Rating
 - RatingReason
 - Try it!
 
Updates the feedback received from the user for a single turn of the bot response.
HTTP request
POST https://{endpoint}/v3/{session=projects/*/locations/*/agents/*/sessions/*}:submitAnswerFeedback
Where {endpoint} is one of the supported service endpoints.
The URLs use gRPC Transcoding syntax.
Path parameters
| Parameters | |
|---|---|
session | 
                
                   
 Required. The name of the session the feedback was sent to. Authorization requires the following IAM permission on the specified resource  
  | 
              
Request body
The request body contains data with the following structure:
| JSON representation | 
|---|
{
  "responseId": string,
  "answerFeedback": {
    object ( | 
                
| Fields | |
|---|---|
responseId | 
                  
                     
 Required. ID of the response to update its feedback. This is the same as DetectIntentResponse.response_id.  | 
                
answerFeedback | 
                  
                     
 Required. Feedback provided for a bot answer.  | 
                
updateMask | 
                  
                     
 Optional. The mask to control which fields to update. If the mask is not present, all fields will be updated. This is a comma-separated list of fully qualified names of fields. Example:   | 
                
Response body
Stores information about feedback provided by users about a response.
If successful, the response body contains data with the following structure:
| JSON representation | 
|---|
{ "rating": enum (  | 
                  
| Fields | |
|---|---|
rating | 
                    
                       
 Optional. Rating from user for the specific Dialogflow response.  | 
                  
ratingReason | 
                    
                       
 Optional. In case of thumbs down rating provided, users can optionally provide context about the rating.  | 
                  
customRating | 
                    
                       
 Optional. Custom rating from the user about the provided answer, with maximum length of 1024 characters. For example, client could use a customized JSON object to indicate the rating.  | 
                  
Authorization scopes
Requires one of the following OAuth scopes:
https://www.googleapis.com/auth/cloud-platformhttps://www.googleapis.com/auth/dialogflow
For more information, see the Authentication Overview.
Rating
Represents thumbs up/down rating provided by user about a response.
| Enums | |
|---|---|
RATING_UNSPECIFIED | 
                Rating not specified. | 
THUMBS_UP | 
                Thumbs up feedback from user. | 
THUMBS_DOWN | 
                Thumbs down feedback from user. | 
RatingReason
Stores extra information about why users provided thumbs down rating.
| JSON representation | 
|---|
{ "reasonLabels": [ string ], "feedback": string }  | 
              
| Fields | |
|---|---|
reasonLabels[] | 
                
                   
 Optional. Custom reason labels for thumbs down rating provided by the user. The maximum number of labels allowed is 10 and the maximum length of a single label is 128 characters.  | 
              
feedback | 
                
                   
 Optional. Additional feedback about the rating. This field can be populated without choosing a predefined   |