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.
Server path: /google-forms | Type: Application | PCID required: Yes
| Tool | Description |
|---|
google-forms_create_form | Create a new Google Form with title and optional description |
google-forms_get_form | Retrieve details of a specific Google Form by ID |
google-forms_add_text_question | Add a text question to a Google Form |
google-forms_add_multiple_choice_question | Add a multiple choice question to a Google Form |
google-forms_get_form_responses | Get responses for a specific Google Form |
Create a new Google Form with title and optional description
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
title | string | Yes | — | Title of form |
description | string | No | — | Description of form |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"title": {
"type": "string",
"description": "Title of form"
},
"description": {
"type": "string",
"description": "Description of form"
}
},
"required": [
"PCID",
"title"
]
}
Retrieve details of a specific Google Form by ID
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
formId | string | Yes | — | Form ID to retrieve |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"formId": {
"type": "string",
"description": "Form ID to retrieve"
}
},
"required": [
"PCID",
"formId"
]
}
google-forms_add_text_question
Add a text question to a Google Form
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
formId | string | Yes | — | Form ID to add question to |
questionTitle | string | Yes | — | Title of question |
required | boolean | No | false | If true, the question is required. Default is false. |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"formId": {
"type": "string",
"description": "Form ID to add question to"
},
"questionTitle": {
"type": "string",
"description": "Title of question"
},
"required": {
"type": "boolean",
"default": false,
"description": "If true, the question is required. Default is false."
}
},
"required": [
"PCID",
"formId",
"questionTitle"
]
}
Add a multiple choice question to a Google Form
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
formId | string | Yes | — | Form ID to add question to |
questionTitle | string | Yes | — | Title of question |
options | string[] | Yes | — | Options for question |
required | boolean | No | false | If true, the question is required. Default is false. |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"formId": {
"type": "string",
"description": "Form ID to add question to"
},
"questionTitle": {
"type": "string",
"description": "Title of question"
},
"options": {
"type": "array",
"items": {
"type": "string"
},
"description": "Options for question"
},
"required": {
"type": "boolean",
"default": false,
"description": "If true, the question is required. Default is false."
}
},
"required": [
"PCID",
"formId",
"questionTitle",
"options"
]
}
Get responses for a specific Google Form
Parameters:
| Parameter | Type | Required | Default | Description |
|---|
formId | string | Yes | — | Form ID to get responses for |
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID"
},
"formId": {
"type": "string",
"description": "Form ID to get responses for"
}
},
"required": [
"PCID",
"formId"
]
}