/surveymonkey-contacts | Type: Application | PCID required: Yes
Tools
| Tool | Description |
|---|---|
surveymonkey_contacts_add_contact_to_list | Add contact to list |
surveymonkey_contacts_create_contact_field | Create contact field |
surveymonkey_contacts_create_contact_list | Create contact list |
surveymonkey_contacts_delete_contact | Delete contact |
surveymonkey_contacts_delete_contact_field | Delete contact field |
surveymonkey_contacts_delete_contact_list | Delete contact list |
surveymonkey_contacts_get_contact | Get contact |
surveymonkey_contacts_get_contact_field | Get contact field |
surveymonkey_contacts_get_contact_list | Get contact list |
surveymonkey_contacts_list_contact_fields | List contact fields |
surveymonkey_contacts_list_contact_list_contacts | List contacts in list |
surveymonkey_contacts_list_contact_lists | List contact lists |
surveymonkey_contacts_list_contacts | List all contacts |
surveymonkey_contacts_update_contact | Update contact |
surveymonkey_contacts_update_contact_field | Update contact field |
surveymonkey_contacts_update_contact_list | Update contact list |
surveymonkey_contacts_add_contact_to_list
Add contact to list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_list_id | string | Yes | — | Contact list ID |
custom_fields | object | No | — | Custom field values |
email | string | Yes | — | Contact email address |
first_name | string | No | — | Contact first name |
last_name | string | No | — | Contact last name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_list_id": {
"type": "string",
"description": "Contact list ID"
},
"custom_fields": {
"type": "object",
"description": "Custom field values"
},
"email": {
"type": "string",
"description": "Contact email address"
},
"first_name": {
"type": "string",
"description": "Contact first name"
},
"last_name": {
"type": "string",
"description": "Contact last name"
}
},
"required": [
"PCID",
"contact_list_id",
"email"
]
}
surveymonkey_contacts_create_contact_field
Create contact field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
label | string | Yes | — | Field label |
type | string | Yes | — | Field type |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"label": {
"type": "string",
"description": "Field label"
},
"type": {
"type": "string",
"description": "Field type",
"enum": [
"text",
"number",
"date"
]
}
},
"required": [
"PCID",
"label",
"type"
]
}
surveymonkey_contacts_create_contact_list
Create contact list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
name | string | Yes | — | Contact list name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"name": {
"type": "string",
"description": "Contact list name"
}
},
"required": [
"PCID",
"name"
]
}
surveymonkey_contacts_delete_contact
Delete contact Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_id | string | Yes | — | Contact ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_id": {
"type": "string",
"description": "Contact ID"
}
},
"required": [
"PCID",
"contact_id"
]
}
surveymonkey_contacts_delete_contact_field
Delete contact field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_field_id | string | Yes | — | Contact field ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_field_id": {
"type": "string",
"description": "Contact field ID"
}
},
"required": [
"PCID",
"contact_field_id"
]
}
surveymonkey_contacts_delete_contact_list
Delete contact list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_list_id | string | Yes | — | Contact list ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_list_id": {
"type": "string",
"description": "Contact list ID"
}
},
"required": [
"PCID",
"contact_list_id"
]
}
surveymonkey_contacts_get_contact
Get contact Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_id | string | Yes | — | Contact ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_id": {
"type": "string",
"description": "Contact ID"
}
},
"required": [
"PCID",
"contact_id"
]
}
surveymonkey_contacts_get_contact_field
Get contact field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_field_id | string | Yes | — | Contact field ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_field_id": {
"type": "string",
"description": "Contact field ID"
}
},
"required": [
"PCID",
"contact_field_id"
]
}
surveymonkey_contacts_get_contact_list
Get contact list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_list_id | string | Yes | — | Contact list ID |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_list_id": {
"type": "string",
"description": "Contact list ID"
}
},
"required": [
"PCID",
"contact_list_id"
]
}
surveymonkey_contacts_list_contact_fields
List contact fields 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_contacts_list_contact_list_contacts
List contacts in list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_list_id | string | Yes | — | Contact list 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"
},
"contact_list_id": {
"type": "string",
"description": "Contact list ID"
},
"per_page": {
"type": "integer",
"description": "Number of results per page"
},
"page": {
"type": "integer",
"description": "Page number"
}
},
"required": [
"PCID",
"contact_list_id"
]
}
surveymonkey_contacts_list_contact_lists
List contact lists 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_contacts_list_contacts
List all contacts 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_contacts_update_contact
Update contact Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_id | string | Yes | — | Contact ID |
custom_fields | object | No | — | Custom field values |
email | string | No | — | Contact email address |
first_name | string | No | — | Contact first name |
last_name | string | No | — | Contact last name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_id": {
"type": "string",
"description": "Contact ID"
},
"custom_fields": {
"type": "object",
"description": "Custom field values"
},
"email": {
"type": "string",
"description": "Contact email address"
},
"first_name": {
"type": "string",
"description": "Contact first name"
},
"last_name": {
"type": "string",
"description": "Contact last name"
}
},
"required": [
"PCID",
"contact_id"
]
}
surveymonkey_contacts_update_contact_field
Update contact field Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_field_id | string | Yes | — | Contact field ID |
label | string | No | — | Field label |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_field_id": {
"type": "string",
"description": "Contact field ID"
},
"label": {
"type": "string",
"description": "Field label"
}
},
"required": [
"PCID",
"contact_field_id"
]
}
surveymonkey_contacts_update_contact_list
Update contact list Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
contact_list_id | string | Yes | — | Contact list ID |
name | string | No | — | Contact list name |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"contact_list_id": {
"type": "string",
"description": "Contact list ID"
},
"name": {
"type": "string",
"description": "Contact list name"
}
},
"required": [
"PCID",
"contact_list_id"
]
}

