Stay organized with collections
Save and categorize content based on your preferences.
Create a new form using the title given in the provided form message in
the request. Important: Only the form.info.title and
form.info.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 to create an empty form with a title and (optional)
document title, and then call forms.update to add the items.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[],[],null,["# Method: googleapis.forms.v1.forms.create\n\nCreate a new form using the title given in the provided form message in\nthe request. *Important:* Only the form.info.title and\nform.info.document_title fields are copied to the new form. All other\nfields including the form description, items and settings are\ndisallowed. To create a new form and add items, you must first call\nforms.create to create an empty form with a title and (optional)\ndocument title, and then call forms.update to add the items.\n\nArguments\n---------\n\nRaised exceptions\n-----------------\n\nResponse\n--------\n\nIf successful, the response contains an instance of [`Form`](https://cloud.google.com/workflows/docs/reference/googleapis/forms/v1/Overview#Form).\n\nSubworkflow snippet\n-------------------\n\nSome fields might be optional or required.\nTo identify required fields, refer to the [API documentation](https://developers.google.com/forms/api/reference/rest/v1/forms/create). \n\n### YAML\n\n```yaml\n- create:\n call: googleapis.forms.v1.forms.create\n args:\n body:\n info:\n description: ...\n title: ...\n items: ...\n settings:\n quizSettings:\n isQuiz: ...\n result: createResult\n```\n\n### JSON\n\n```json\n[\n {\n \"create\": {\n \"call\": \"googleapis.forms.v1.forms.create\",\n \"args\": {\n \"body\": {\n \"info\": {\n \"description\": \"...\",\n \"title\": \"...\"\n },\n \"items\": \"...\",\n \"settings\": {\n \"quizSettings\": {\n \"isQuiz\": \"...\"\n }\n }\n }\n },\n \"result\": \"createResult\"\n }\n }\n]\n```"]]