set_publish_settings
Update Google Forms publish settings to control template publishing and authentication requirements for viewing or submission.
Instructions
Updates the publish settings of a form.
Args:
user_google_email (str): The user's Google email address. Required.
form_id (str): The ID of the form to update publish settings for.
publish_as_template (bool): Whether to publish as a template. Defaults to False.
require_authentication (bool): Whether to require authentication to view/submit. Defaults to False.
Returns:
str: Confirmation message of the successful publish settings update.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
form_id | Yes | ||
publish_as_template | No | ||
require_authentication | No | ||
service | Yes | ||
user_google_email | Yes |
Input Schema (JSON Schema)
{
"properties": {
"form_id": {
"title": "Form Id",
"type": "string"
},
"publish_as_template": {
"default": false,
"title": "Publish As Template",
"type": "boolean"
},
"require_authentication": {
"default": false,
"title": "Require Authentication",
"type": "boolean"
},
"service": {
"title": "service",
"type": "string"
},
"user_google_email": {
"title": "User Google Email",
"type": "string"
}
},
"required": [
"service",
"user_google_email",
"form_id"
],
"title": "set_publish_settingsArguments",
"type": "object"
}