/surveymonkey-surveys | Type: Application | PCID required: Yes
Tools
surveymonkey_surveys_create_question
Create question Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
answers | object | No | — | Answer choices configuration |
family | string | Yes | — | Question family (e.g., single_choice, multiple_choice, open_ended, matrix) |
headings | object[] | Yes | — | Question heading text |
position | integer | No | — | Position on the page |
required | object | No | — | Required response configuration |
sorting | object | No | — | Answer sorting configuration |
subtype | string | Yes | — | Question subtype (e.g., vertical, menu, essay, single, multi, rating) |
validation | object | No | — | Response validation configuration |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"answers": {
"type": "object",
"description": "Answer choices configuration"
},
"family": {
"type": "string",
"description": "Question family (e.g., single_choice, multiple_choice, open_ended, matrix)",
"enum": [
"single_choice",
"multiple_choice",
"open_ended",
"matrix",
"demographic",
"datetime",
"presentation"
]
},
"headings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"heading": {
"type": "string",
"description": "The heading value"
}
}
},
"description": "Question heading text"
},
"position": {
"type": "integer",
"description": "Position on the page"
},
"required": {
"type": "object",
"description": "Required response configuration"
},
"sorting": {
"type": "object",
"description": "Answer sorting configuration"
},
"subtype": {
"type": "string",
"description": "Question subtype (e.g., vertical, menu, essay, single, multi, rating)"
},
"validation": {
"type": "object",
"description": "Response validation configuration"
}
},
"required": [
"PCID",
"survey_id",
"page_id",
"family",
"headings",
"subtype"
]
}
surveymonkey_surveys_create_survey
Create survey Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
folder_id | string | No | — | Folder to place the survey in |
from_survey_id | string | No | — | Existing survey ID to copy |
from_team_template_id | string | No | — | Team template ID to create survey from |
from_template_id | string | No | — | Template ID to create survey from |
language | string | No | — | Survey language code (e.g., en) |
nickname | string | No | — | Survey nickname |
title | string | Yes | — | Survey title |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"folder_id": {
"type": "string",
"description": "Folder to place the survey in"
},
"from_survey_id": {
"type": "string",
"description": "Existing survey ID to copy"
},
"from_team_template_id": {
"type": "string",
"description": "Team template ID to create survey from"
},
"from_template_id": {
"type": "string",
"description": "Template ID to create survey from"
},
"language": {
"type": "string",
"description": "Survey language code (e.g., en)"
},
"nickname": {
"type": "string",
"description": "Survey nickname"
},
"title": {
"type": "string",
"description": "Survey title"
}
},
"required": [
"PCID",
"title"
]
}
surveymonkey_surveys_create_survey_page
Create survey page Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
description | string | No | — | Page description |
position | integer | No | — | Position of the page in the survey |
title | string | Yes | — | Page title |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"description": {
"type": "string",
"description": "Page description"
},
"position": {
"type": "integer",
"description": "Position of the page in the survey"
},
"title": {
"type": "string",
"description": "Page title"
}
},
"required": [
"PCID",
"survey_id",
"title"
]
}
surveymonkey_surveys_delete_question
Delete question Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
question_id | string | Yes | — | Question ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"question_id": {
"type": "string",
"description": "Question ID"
}
},
"required": [
"PCID",
"survey_id",
"page_id",
"question_id"
]
}
surveymonkey_surveys_delete_survey
Delete survey Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_delete_survey_page
Delete survey page Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
}
},
"required": [
"PCID",
"survey_id",
"page_id"
]
}
surveymonkey_surveys_get_question
Get question Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
question_id | string | Yes | — | Question ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"question_id": {
"type": "string",
"description": "Question ID"
}
},
"required": [
"PCID",
"survey_id",
"page_id",
"question_id"
]
}
surveymonkey_surveys_get_survey
Get survey Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_get_survey_details
Get survey details Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_get_survey_page
Get survey page Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
}
},
"required": [
"PCID",
"survey_id",
"page_id"
]
}
surveymonkey_surveys_list_questions
List questions Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID",
"survey_id",
"page_id"
]
}
surveymonkey_surveys_list_survey_categories
List survey categories Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID"
]
}
surveymonkey_surveys_list_survey_folders
List survey folders Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID"
]
}
surveymonkey_surveys_list_survey_languages
List survey languagesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
surveymonkey_surveys_list_survey_pages
List survey pages Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_list_survey_templates
List survey templates Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
category | string | No | — | Filter by category |
language | string | No | — | Filter by language |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
},
"category": {
"type": "string",
"description": "Filter by category"
},
"language": {
"type": "string",
"description": "Filter by language"
}
},
"required": [
"PCID"
]
}
surveymonkey_surveys_list_survey_translations
List survey translations Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_list_surveys
List surveys Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
per_page | integer | No | — | Number of results per page |
page | integer | No | — | Page number |
sort_by | string | No | — | Field to sort by |
sort_order | string | No | — | Sort order |
include | string | No | — | Comma-separated list of additional fields to include (e.g., response_count,date_created,date_modified,language,question_count,analyze_url,preview) |
title | string | No | — | Filter by survey title (partial match) |
start_modified_at | string | No | — | Filter by modification date (start) |
end_modified_at | string | No | — | Filter by modification date (end) |
folder_id | string | No | — | Filter by folder ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
},
"sort_by": {
"type": "string",
"description": "Field to sort by",
"enum": [
"title",
"date_modified",
"num_responses"
]
},
"sort_order": {
"type": "string",
"description": "Sort order",
"enum": [
"ASC",
"DESC"
]
},
"include": {
"type": "string",
"description": "Comma-separated list of additional fields to include (e.g., response_count,date_created,date_modified,language,question_count,analyze_url,preview)"
},
"title": {
"type": "string",
"description": "Filter by survey title (partial match)"
},
"start_modified_at": {
"type": "string",
"description": "Filter by modification date (start)"
},
"end_modified_at": {
"type": "string",
"description": "Filter by modification date (end)"
},
"folder_id": {
"type": "string",
"description": "Filter by folder ID"
}
},
"required": [
"PCID"
]
}
surveymonkey_surveys_update_question
Update question Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
question_id | string | Yes | — | Question ID |
answers | object | No | — | Answer choices configuration |
headings | object[] | No | — | Question heading text |
position | integer | No | — | Position on the page |
required | object | No | — | Required response configuration |
sorting | object | No | — | Answer sorting configuration |
validation | object | No | — | Response validation configuration |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"question_id": {
"type": "string",
"description": "Question ID"
},
"answers": {
"type": "object",
"description": "Answer choices configuration"
},
"headings": {
"type": "array",
"items": {
"type": "object",
"properties": {
"heading": {
"type": "string",
"description": "The heading value"
}
}
},
"description": "Question heading text"
},
"position": {
"type": "integer",
"description": "Position on the page"
},
"required": {
"type": "object",
"description": "Required response configuration"
},
"sorting": {
"type": "object",
"description": "Answer sorting configuration"
},
"validation": {
"type": "object",
"description": "Response validation configuration"
}
},
"required": [
"PCID",
"survey_id",
"page_id",
"question_id"
]
}
surveymonkey_surveys_update_survey
Update survey Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
folder_id | string | No | — | Folder to place the survey in |
language | string | No | — | Survey language code |
nickname | string | No | — | Survey nickname |
title | string | No | — | Survey title |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"folder_id": {
"type": "string",
"description": "Folder to place the survey in"
},
"language": {
"type": "string",
"description": "Survey language code"
},
"nickname": {
"type": "string",
"description": "Survey nickname"
},
"title": {
"type": "string",
"description": "Survey title"
}
},
"required": [
"PCID",
"survey_id"
]
}
surveymonkey_surveys_update_survey_page
Update survey page Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
survey_id | string | Yes | — | Survey ID |
page_id | string | Yes | — | Page ID |
description | string | No | — | Page description |
position | integer | No | — | Position of the page |
title | string | No | — | Page title |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"survey_id": {
"type": "string",
"description": "Survey ID"
},
"page_id": {
"type": "string",
"description": "Page ID"
},
"description": {
"type": "string",
"description": "Page description"
},
"position": {
"type": "integer",
"description": "Position of the page"
},
"title": {
"type": "string",
"description": "Page title"
}
},
"required": [
"PCID",
"survey_id",
"page_id"
]
}

