> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pinkfish.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# surveymonkey-surveys

> SurveyMonkey Surveys - Create and manage surveys, pages, questions, templates, and translations

**Server path:** `/surveymonkey-surveys` | **Type:** Application | **PCID required:** Yes

## Tools

| Tool                                                                                              | Description              |
| ------------------------------------------------------------------------------------------------- | ------------------------ |
| [`surveymonkey_surveys_create_question`](#surveymonkey_surveys_create_question)                   | Create question          |
| [`surveymonkey_surveys_create_survey`](#surveymonkey_surveys_create_survey)                       | Create survey            |
| [`surveymonkey_surveys_create_survey_page`](#surveymonkey_surveys_create_survey_page)             | Create survey page       |
| [`surveymonkey_surveys_delete_question`](#surveymonkey_surveys_delete_question)                   | Delete question          |
| [`surveymonkey_surveys_delete_survey`](#surveymonkey_surveys_delete_survey)                       | Delete survey            |
| [`surveymonkey_surveys_delete_survey_page`](#surveymonkey_surveys_delete_survey_page)             | Delete survey page       |
| [`surveymonkey_surveys_get_question`](#surveymonkey_surveys_get_question)                         | Get question             |
| [`surveymonkey_surveys_get_survey`](#surveymonkey_surveys_get_survey)                             | Get survey               |
| [`surveymonkey_surveys_get_survey_details`](#surveymonkey_surveys_get_survey_details)             | Get survey details       |
| [`surveymonkey_surveys_get_survey_page`](#surveymonkey_surveys_get_survey_page)                   | Get survey page          |
| [`surveymonkey_surveys_list_questions`](#surveymonkey_surveys_list_questions)                     | List questions           |
| [`surveymonkey_surveys_list_survey_categories`](#surveymonkey_surveys_list_survey_categories)     | List survey categories   |
| [`surveymonkey_surveys_list_survey_folders`](#surveymonkey_surveys_list_survey_folders)           | List survey folders      |
| [`surveymonkey_surveys_list_survey_languages`](#surveymonkey_surveys_list_survey_languages)       | List survey languages    |
| [`surveymonkey_surveys_list_survey_pages`](#surveymonkey_surveys_list_survey_pages)               | List survey pages        |
| [`surveymonkey_surveys_list_survey_templates`](#surveymonkey_surveys_list_survey_templates)       | List survey templates    |
| [`surveymonkey_surveys_list_survey_translations`](#surveymonkey_surveys_list_survey_translations) | List survey translations |
| [`surveymonkey_surveys_list_surveys`](#surveymonkey_surveys_list_surveys)                         | List surveys             |
| [`surveymonkey_surveys_update_question`](#surveymonkey_surveys_update_question)                   | Update question          |
| [`surveymonkey_surveys_update_survey`](#surveymonkey_surveys_update_survey)                       | Update survey            |
| [`surveymonkey_surveys_update_survey_page`](#surveymonkey_surveys_update_survey_page)             | Update survey page       |

***

## 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                                             |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## surveymonkey\_surveys\_delete\_survey

Delete survey

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `survey_id` | string | Yes      | —       | Survey ID   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## surveymonkey\_surveys\_get\_survey

Get survey

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `survey_id` | string | Yes      | —       | Survey ID   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## surveymonkey\_surveys\_get\_survey\_details

Get survey details

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `survey_id` | string | Yes      | —       | Survey ID   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## surveymonkey\_surveys\_list\_survey\_languages

List survey languages

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "type": "object",
    "properties": {
      "PCID": {
        "type": "string",
        "description": "Pink Connect ID for the authenticated connection"
      }
    },
    "required": [
      "PCID"
    ]
  }
  ```
</Expandable>

***

## 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                |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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         |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## surveymonkey\_surveys\_list\_survey\_translations

List survey translations

**Parameters:**

| Parameter   | Type   | Required | Default | Description |
| ----------- | ------ | -------- | ------- | ----------- |
| `survey_id` | string | Yes      | —       | Survey ID   |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                                                                                                                                     |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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 |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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                  |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>

***

## 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           |

<Expandable title="inputSchema">
  ```json theme={null}
  {
    "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"
    ]
  }
  ```
</Expandable>
