/cabinpanda | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
cabinpanda_create_form | Create a new form |
cabinpanda_delete_form | Delete a form |
cabinpanda_get_form | Get form details |
cabinpanda_get_profile | Get the authenticated user’s profile |
cabinpanda_list_form_fields | List form fields |
cabinpanda_list_form_submissions | List form submissions |
cabinpanda_list_form_templates | List form templates |
cabinpanda_list_forms | List all forms |
cabinpanda_list_integrations | List available integrations |
cabinpanda_list_workspaces | List workspaces |
cabinpanda_update_form | Update a form |
cabinpanda_create_form
Create a new form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | Name of the form |
template_id | integer | Yes | — | ID of the form template to use. Get available templates from the list form templates endpoint. |
type_id | integer | Yes | — | Type ID for the form (1 = Regular form, 2 = Survey, etc.) |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "Name of the form"
},
"template_id": {
"type": "integer",
"description": "ID of the form template to use. Get available templates from the list form templates endpoint."
},
"type_id": {
"type": "integer",
"description": "Type ID for the form (1 = Regular form, 2 = Survey, etc.)"
}
},
"required": [
"PCID",
"name",
"template_id",
"type_id"
]
}
cabinpanda_delete_form
Delete a form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
form_key | string | Yes | — | The unique key identifier of the form |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"form_key": {
"type": "string",
"description": "The unique key identifier of the form"
}
},
"required": [
"PCID",
"form_key"
]
}
cabinpanda_get_form
Get form details Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
form_key | string | Yes | — | The unique key identifier of the form |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"form_key": {
"type": "string",
"description": "The unique key identifier of the form"
}
},
"required": [
"PCID",
"form_key"
]
}
cabinpanda_get_profile
Get the authenticated user’s profileShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
cabinpanda_list_form_fields
List form fields Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
form_key | string | Yes | — | The unique key identifier of the form |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"form_key": {
"type": "string",
"description": "The unique key identifier of the form"
}
},
"required": [
"PCID",
"form_key"
]
}
cabinpanda_list_form_submissions
List form submissions Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
form_key | string | Yes | — | The unique key identifier of the form |
page | integer | No | — | Page number for pagination |
per_page | integer | No | — | Number of submissions per page |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"form_key": {
"type": "string",
"description": "The unique key identifier of the form"
},
"page": {
"type": "integer",
"description": "Page number for pagination"
},
"per_page": {
"type": "integer",
"description": "Number of submissions per page"
}
},
"required": [
"PCID",
"form_key"
]
}
cabinpanda_list_form_templates
List form templatesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
cabinpanda_list_forms
List all formsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
cabinpanda_list_integrations
List available integrationsShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
cabinpanda_list_workspaces
List workspacesShow inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
}
},
"required": [
"PCID"
]
}
cabinpanda_update_form
Update a form Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
form_key | string | Yes | — | The unique key identifier of the form |
name | string | No | — | Updated name of the form |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"form_key": {
"type": "string",
"description": "The unique key identifier of the form"
},
"name": {
"type": "string",
"description": "Updated name of the form"
}
},
"required": [
"PCID",
"form_key"
]
}

