get_form_response
Retrieve specific form response details, including answers and metadata, from Google Forms using the user's Google email, form ID, and response ID.
Instructions
Get one response from the form.
Args: user_google_email (str): The user's Google email address. Required. form_id (str): The ID of the form. response_id (str): The ID of the response to retrieve.
Returns: str: Response details including answers and metadata.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
form_id | Yes | ||
response_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"title": "Form Id",
"type": "string"
},
"response_id": {
"title": "Response Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"form_id",
"response_id"
],
"type": "object"
}