surveymonkey_create_survey
Create a new SurveyMonkey survey by supplying a JSON definition with title, pages, and questions.
Instructions
Creates a new SurveyMonkey survey.
Args: survey_definition: Survey definition as a JSON object. Structure: { "title": "My Survey", (required) "nickname": "Internal name", (optional) "language": "en", (optional, default: "en") "folder_id": "123", (optional) "category": "general", (optional) "pages": [ (optional — add pages at creation) { "title": "Page 1", "questions": [ { "headings": [{"heading": "Question text"}], "family": "single_choice", "subtype": "vertical", "answers": { "choices": [ {"text": "Option A"}, {"text": "Option B"} ] } } ] } ] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| survey_definition | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |