get_form_response
Retrieve specific response data from a Google Form by providing the user's email, form ID, and response ID, including detailed answers and metadata.
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 | ||
service | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"title": "Form Id",
"type": "string"
},
"response_id": {
"title": "Response Id",
"type": "string"
},
"service": {
"title": "service",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"form_id",
"response_id"
],
"title": "get_form_responseArguments",
"type": "object"
}