To give form creators more control over who can respond, we're introducing granular controls for responders. Forms created with the API after January 31, 2026 will have an unpublished state by default. To learn more, seeAPI changes to Google Forms.
Create a new form using the title given in the provided form message in the request.
Important:Only theform.info.titleandform.info.document_titlefields are copied to the new form. All other fields including the form description, items and settings are disallowed. To create a new form and add items, you must first callforms.createto create an empty form with a title and (optional) document title, and then callforms.updateto add the items.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-02-11 UTC."],[],["A new form is created via a POST request to `https://forms.googleapis.com/v1beta/forms`. The request body includes a `Form` instance, and only the `title` and `document_title` fields are copied to the new form. The successful response returns the newly created `Form`. Adding items requires calling `forms.update` after creating the empty form using `forms.create`. Authorization requires OAuth scopes: `drive`, `drive.file`, or `forms.body`. The request uses gRPC Transcoding.\n"],null,["# Method: forms.create\n\n- [HTTP request](#body.HTTP_TEMPLATE)\n- [Request body](#body.request_body)\n- [Response body](#body.response_body)\n- [Authorization Scopes](#body.aspect)\n\nCreate a new form using the title given in the provided form message in the request.\n\n\u003cbr /\u003e\n\n**Important:** Only the [form.info.title](/forms/api/reference/rest/v1beta/forms#Info.FIELDS.title) and [form.info.document_title](/forms/api/reference/rest/v1beta/forms#Info.FIELDS.document_title) fields are copied to the new form. All other fields including the form description, items and settings are disallowed. To create a new form and add items, you must first call [forms.create](/forms/api/reference/rest/v1beta/forms/create#google.apps.forms.v1beta.FormsService.CreateForm) to create an empty form with a title and (optional) document title, and then call [forms.update](/forms/api/reference/rest/v1beta/forms/batchUpdate#google.apps.forms.v1beta.FormsService.BatchUpdateForm) to add the items.\n\n### HTTP request\n\n`POST https://forms.googleapis.com/v1beta/forms`\n\nThe URL uses [gRPC Transcoding](https://google.aip.dev/127) syntax.\n\n### Request body\n\nThe request body contains an instance of [Form](/forms/api/reference/rest/v1beta/forms#Form).\n\n### Response body\n\nIf successful, the response body contains a newly created instance of [Form](/forms/api/reference/rest/v1beta/forms#Form).\n\n### Authorization Scopes\n\nRequires one of the following OAuth scopes:\n\n- `https://www.googleapis.com/auth/drive`\n- `\n https://www.googleapis.com/auth/drive.file`\n- `\n https://www.googleapis.com/auth/forms.body`\n\nFor more information, see the [Authorization guide](/workspace/guides/configure-oauth-consent)."]]