/formdesk | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
formdesk_add_result | Add a form result |
formdesk_connect | Connect to Formdesk API |
formdesk_delete_result | Delete a form result |
formdesk_get_result | Get a specific form result |
formdesk_list_forms | List all forms |
formdesk_list_results | List form results |
formdesk_add_result
Add a form result Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | The form identifier (form name or ID) |
body | object | Yes | — | Key-value pairs where keys are form field names and values are the submission values. The exact fields depend on the form definition. |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"formId": {
"type": "string",
"description": "The form identifier (form name or ID)"
},
"body": {
"type": "object",
"description": "Key-value pairs where keys are form field names and values are the submission values. The exact fields depend on the form definition."
}
},
"required": [
"PCID",
"formId",
"body"
]
}
formdesk_connect
Connect to Formdesk APIShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
formdesk_delete_result
Delete a form result Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | The form identifier (form name or ID) |
resultId | string | Yes | — | The result/submission identifier |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"formId": {
"type": "string",
"description": "The form identifier (form name or ID)"
},
"resultId": {
"type": "string",
"description": "The result/submission identifier"
}
},
"required": [
"PCID",
"formId",
"resultId"
]
}
formdesk_get_result
Get a specific form result Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | The form identifier (form name or ID) |
resultId | string | Yes | — | The result/submission identifier |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"formId": {
"type": "string",
"description": "The form identifier (form name or ID)"
},
"resultId": {
"type": "string",
"description": "The result/submission identifier"
}
},
"required": [
"PCID",
"formId",
"resultId"
]
}
formdesk_list_forms
List all formsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
formdesk_list_results
List form results Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
formId | string | Yes | — | The form identifier (form name or ID) |
offset | integer | No | — | Number of results to skip (for pagination) |
limit | integer | No | — | Maximum number of results to return (for pagination) |
date_from | string | No | — | Filter results from this date (format: YYYY-MM-DD) |
date_to | string | No | — | Filter results up to this date (format: YYYY-MM-DD) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"formId": {
"type": "string",
"description": "The form identifier (form name or ID)"
},
"offset": {
"type": "integer",
"description": "Number of results to skip (for pagination)"
},
"limit": {
"type": "integer",
"description": "Maximum number of results to return (for pagination)"
},
"date_from": {
"type": "string",
"description": "Filter results from this date (format: YYYY-MM-DD)"
},
"date_to": {
"type": "string",
"description": "Filter results up to this date (format: YYYY-MM-DD)"
}
},
"required": [
"PCID",
"formId"
]
}

