get_form
Retrieve detailed form information including title, description, questions, and URLs from Google Workspace by providing the user's email address and form ID.
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 | ||
service | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"title": "Form Id",
"type": "string"
},
"service": {
"title": "service",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"form_id"
],
"title": "get_formArguments",
"type": "object"
}