create_form
Generate a new Google Form with a specified title, description, and document tab title using user's Google email. Returns form ID and edit URL for immediate access.
Instructions
Create a new form using the title given in the provided form message in the request.
Args:
user_google_email (str): The user's Google email address. Required.
title (str): The title of the form.
description (Optional[str]): The description of the form.
document_title (Optional[str]): The document title (shown in browser tab).
Returns:
str: Confirmation message with form ID and edit URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | ||
document_title | No | ||
service | Yes | ||
title | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Description"
},
"document_title": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Document Title"
},
"service": {
"title": "service",
"type": "string"
},
"title": {
"title": "Title",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"title"
],
"title": "create_formArguments",
"type": "object"
}