POST
gforms_forms_create.py
Requires
https://www.googleapis.com/auth/forms.body. Costs 1 against the provider’s own quota.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Create a new form from a title. Only the title and the document title are honoured: the form is created with no description, no items and default settings. To add questions, call this and then forms_batch_update with the returned formId. Pass unpublished=true to create a form that does not yet accept responses.
from charter.packs import gforms
result = await gforms.forms_create.ainvoke({"body": ...})
https://www.googleapis.com/auth/forms.body. Costs 1 against the provider’s own quota.| Field | Type | Description |
|---|---|---|
unpublished | boolean | Optional. Whether the form is unpublished. If set to true, the form doesn’t accept responses. If set to false or unset, the form is published and accepts responses. |
| Field | Type | Description |
|---|---|---|
body * | FormsCreateBody | The form to create. |
Was this page helpful?