get_form
Retrieve form details including title, description, questions, and URLs from Google Forms by providing a user email and form ID. Use this tool to integrate form data into workflows.
Instructions
Get a form.
Args: user_google_email (str): The user's Google email address. Required. form_id (str): The ID of the form to retrieve.
Returns: str: Form details including title, description, questions, and URLs.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
form_id | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"title": "Form Id",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"user_google_email",
"form_id"
],
"type": "object"
}