/chatbotkit-conversations | Type: Application | PCID required: Yes
Tools
chatbotkit_conversations_complete_conversation
Complete the next message in a conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
X-Timezone | string | No | — | The timezone to use for the request |
attachments | object[] | No | — | An array of attachments to be added to the conversation |
backstory | string | No | — | The backstory this configuration is using |
botId | string | No | — | The ID of the bot this configuration is using |
contactId | string | No | — | The contact ID to associate with this conversation |
datasetId | string | No | — | The id of the dataset this configuration is using |
extensions | object | No | — | Extensions to enhance the bot’s capabilities |
functions | object[] | No | — | An array of functions to be added to the conversation |
limits | object | No | — | Execution limits to control conversation processing bounds |
messages | object[] | Yes | — | An array of messages to be added to the conversation |
model | string | No | — | A model definition |
moderation | boolean | No | — | The moderation flag for this configuration |
privacy | boolean | No | — | The privacy flag for this configuration |
skillsetId | string | No | — | The id of the skillset this configuration is using |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"X-Timezone": {
"type": "string",
"description": "The timezone to use for the request"
},
"attachments": {
"type": "array",
"items": {
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the attachment"
}
}
},
"description": "An array of attachments to be added to the conversation"
},
"backstory": {
"type": "string",
"description": "The backstory this configuration is using"
},
"botId": {
"type": "string",
"description": "The ID of the bot this configuration is using"
},
"contactId": {
"type": "string",
"description": "The contact ID to associate with this conversation"
},
"datasetId": {
"type": "string",
"description": "The id of the dataset this configuration is using"
},
"extensions": {
"type": "object",
"description": "Extensions to enhance the bot's capabilities",
"properties": {
"backstory": {
"type": "string",
"description": "Additional backstory for the bot"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline datasets to provide additional context"
},
"skillsets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline skillsets to provide additional abilities"
},
"features": {
"type": "array",
"items": {
"type": "object"
},
"description": "Feature flags to enable specific bot capabilities"
}
}
},
"functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the function (must be a valid JS identifier, max 64 chars)"
},
"description": {
"type": "string",
"description": "The description of the function"
},
"parameters": {
"type": "object",
"description": "JSON Schema definition for the function parameters"
},
"result": {
"description": "The result of the function execution"
},
"call": {
"type": "object",
"description": "Configuration for when this function should be automatically called"
}
},
"required": [
"name",
"description",
"parameters"
]
},
"description": "An array of functions to be added to the conversation"
},
"limits": {
"type": "object",
"description": "Execution limits to control conversation processing bounds",
"properties": {
"iterations": {
"type": "integer",
"description": "Maximum number of agentic iterations. Controls how many times the model can iterate through tool calls and responses."
},
"continuations": {
"type": "integer",
"description": "Maximum number of model continuations. Controls how many times the model can continue generating after reaching a stop condition."
},
"calls": {
"type": "integer",
"description": "Maximum number of function/tool calls. Controls how many total function calls can be made during the conversation."
}
}
},
"messages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"user",
"bot",
"reasoning",
"context",
"instruction",
"backstory",
"activity"
],
"description": "The type of the message"
},
"text": {
"type": "string",
"description": "The text of the message"
},
"meta": {
"type": "object",
"description": "Meta data information"
}
},
"required": [
"type",
"text"
]
},
"description": "An array of messages to be added to the conversation"
},
"model": {
"type": "string",
"description": "A model definition"
},
"moderation": {
"type": "boolean",
"description": "The moderation flag for this configuration"
},
"privacy": {
"type": "boolean",
"description": "The privacy flag for this configuration"
},
"skillsetId": {
"type": "string",
"description": "The id of the skillset this configuration is using"
}
},
"required": [
"PCID",
"messages"
]
}
chatbotkit_conversations_complete_conversation_message
Send and receive a conversation response Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to receive message from |
X-Timezone | string | No | — | The timezone to use for the request |
entities | object[] | No | — | Known entities |
extensions | object | No | — | Extensions to enhance the bot’s capabilities |
functions | object[] | No | — | An array of functions to be added to the conversation |
limits | object | No | — | Execution limits to control conversation processing bounds |
text | string | Yes | — | The text of the message to send |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to receive message from"
},
"X-Timezone": {
"type": "string",
"description": "The timezone to use for the request"
},
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The entity type"
},
"begin": {
"type": "number",
"description": "Start offset"
},
"end": {
"type": "number",
"description": "End offset"
},
"text": {
"type": "string",
"description": "The text value of the entity"
},
"replacement": {
"type": "object",
"description": "The replacement value"
}
},
"required": [
"type",
"begin",
"end",
"text"
]
},
"description": "Known entities"
},
"extensions": {
"type": "object",
"description": "Extensions to enhance the bot's capabilities",
"properties": {
"backstory": {
"type": "string",
"description": "Additional backstory for the bot"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline datasets to provide additional context"
},
"skillsets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline skillsets to provide additional abilities"
},
"features": {
"type": "array",
"items": {
"type": "object"
},
"description": "Feature flags to enable specific bot capabilities"
}
}
},
"functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the function (must be a valid JS identifier, max 64 chars)"
},
"description": {
"type": "string",
"description": "The description of the function"
},
"parameters": {
"type": "object",
"description": "JSON Schema definition for the function parameters"
},
"result": {
"description": "The result of the function execution"
},
"call": {
"type": "object",
"description": "Configuration for when this function should be automatically called"
}
},
"required": [
"name",
"description",
"parameters"
]
},
"description": "An array of functions to be added to the conversation"
},
"limits": {
"type": "object",
"description": "Execution limits to control conversation processing bounds",
"properties": {
"iterations": {
"type": "integer",
"description": "Maximum number of agentic iterations. Controls how many times the model can iterate through tool calls and responses."
},
"continuations": {
"type": "integer",
"description": "Maximum number of model continuations. Controls how many times the model can continue generating after reaching a stop condition."
},
"calls": {
"type": "integer",
"description": "Maximum number of function/tool calls. Controls how many total function calls can be made during the conversation."
}
}
},
"text": {
"type": "string",
"description": "The text of the message to send"
}
},
"required": [
"PCID",
"conversationId",
"text"
]
}
chatbotkit_conversations_create_conversation
Create a new conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
backstory | string | No | — | The backstory this configuration is using |
botId | string | No | — | The ID of the bot this configuration is using |
contactId | string | No | — | The contact id assigned to this conversation |
datasetId | string | No | — | The id of the dataset this configuration is using |
description | string | No | — | The associated description |
messages | object[] | No | — | An array of messages to be added to the conversation |
meta | object | No | — | Meta data information |
model | string | No | — | A model definition |
moderation | boolean | No | — | The moderation flag for this configuration |
name | string | No | — | The associated name |
privacy | boolean | No | — | The privacy flag for this configuration |
skillsetId | string | No | — | The id of the skillset this configuration is using |
spaceId | string | No | — | The space id assigned to this conversation |
taskId | string | No | — | The task id assigned to this conversation |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"backstory": {
"type": "string",
"description": "The backstory this configuration is using"
},
"botId": {
"type": "string",
"description": "The ID of the bot this configuration is using"
},
"contactId": {
"type": "string",
"description": "The contact id assigned to this conversation"
},
"datasetId": {
"type": "string",
"description": "The id of the dataset this configuration is using"
},
"description": {
"type": "string",
"description": "The associated description"
},
"messages": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"enum": [
"user",
"bot",
"reasoning",
"context",
"instruction",
"backstory",
"activity"
],
"description": "The type of the message"
},
"text": {
"type": "string",
"description": "The text of the message"
}
},
"required": [
"type",
"text"
]
},
"description": "An array of messages to be added to the conversation"
},
"meta": {
"type": "object",
"description": "Meta data information"
},
"model": {
"type": "string",
"description": "A model definition"
},
"moderation": {
"type": "boolean",
"description": "The moderation flag for this configuration"
},
"name": {
"type": "string",
"description": "The associated name"
},
"privacy": {
"type": "boolean",
"description": "The privacy flag for this configuration"
},
"skillsetId": {
"type": "string",
"description": "The id of the skillset this configuration is using"
},
"spaceId": {
"type": "string",
"description": "The space id assigned to this conversation"
},
"taskId": {
"type": "string",
"description": "The task id assigned to this conversation"
}
},
"required": [
"PCID"
]
}
chatbotkit_conversations_create_conversation_message
Create message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation |
description | string | No | — | The associated description |
entities | object[] | No | — | Known entities |
meta | object | No | — | Meta data information |
name | string | No | — | The associated name |
text | string | Yes | — | The text of the message |
type | string | Yes | — | The type of the message |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation"
},
"description": {
"type": "string",
"description": "The associated description"
},
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The entity type"
},
"begin": {
"type": "number",
"description": "Start offset"
},
"end": {
"type": "number",
"description": "End offset"
},
"text": {
"type": "string",
"description": "The text value of the entity"
},
"replacement": {
"type": "object",
"description": "The replacement value"
}
},
"required": [
"type",
"begin",
"end",
"text"
]
},
"description": "Known entities"
},
"meta": {
"type": "object",
"description": "Meta data information"
},
"name": {
"type": "string",
"description": "The associated name"
},
"text": {
"type": "string",
"description": "The text of the message"
},
"type": {
"type": "string",
"description": "The type of the message",
"enum": [
"user",
"bot",
"reasoning",
"context",
"instruction",
"backstory",
"activity"
]
}
},
"required": [
"PCID",
"conversationId",
"text",
"type"
]
}
chatbotkit_conversations_create_conversation_session
Create conversation session Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation |
durationInSeconds | number | No | — | The maximum amount of time this session will stay open |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation"
},
"durationInSeconds": {
"type": "number",
"description": "The maximum amount of time this session will stay open"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_delete_conversation
Delete conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to delete |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to delete"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_delete_conversation_message
Delete a message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation containing the message |
messageId | string | Yes | — | The ID of the message to delete |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation containing the message"
},
"messageId": {
"type": "string",
"description": "The ID of the message to delete"
}
},
"required": [
"PCID",
"conversationId",
"messageId"
]
}
chatbotkit_conversations_fetch_conversation
Fetch conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to retrieve |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to retrieve"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_fetch_conversation_message
Fetch conversation message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation containing the message |
messageId | string | Yes | — | The ID of the message to retrieve |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation containing the message"
},
"messageId": {
"type": "string",
"description": "The ID of the message to retrieve"
}
},
"required": [
"PCID",
"conversationId",
"messageId"
]
}
chatbotkit_conversations_list_conversation_messages
List conversation messages Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to list messages for |
cursor | string | No | — | The cursor to use for pagination |
order | string | No | — | The order of the paginated items |
take | integer | No | — | The number of items to retrieve |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to list messages for"
},
"cursor": {
"type": "string",
"description": "The cursor to use for pagination"
},
"order": {
"type": "string",
"description": "The order of the paginated items",
"enum": [
"asc",
"desc"
]
},
"take": {
"type": "integer",
"description": "The number of items to retrieve"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_list_conversations
List conversations Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
cursor | string | No | — | The cursor to use for pagination |
order | string | No | — | The order of the paginated items |
take | integer | No | — | The number of items to retrieve |
meta | object | No | — | Key-value pairs to filter the partner users by metadata |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"cursor": {
"type": "string",
"description": "The cursor to use for pagination"
},
"order": {
"type": "string",
"description": "The order of the paginated items",
"enum": [
"asc",
"desc"
]
},
"take": {
"type": "integer",
"description": "The number of items to retrieve"
},
"meta": {
"type": "object",
"description": "Key-value pairs to filter the partner users by metadata"
}
},
"required": [
"PCID"
]
}
chatbotkit_conversations_receive_conversation_message
Receive a conversation response Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to receive message from |
extensions | object | No | — | Extensions to enhance the bot’s capabilities |
functions | object[] | No | — | An array of functions to be added to the conversation |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to receive message from"
},
"extensions": {
"type": "object",
"description": "Extensions to enhance the bot's capabilities",
"properties": {
"backstory": {
"type": "string",
"description": "Additional backstory for the bot"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline datasets to provide additional context"
},
"skillsets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline skillsets to provide additional abilities"
},
"features": {
"type": "array",
"items": {
"type": "object"
},
"description": "Feature flags to enable specific bot capabilities"
}
}
},
"functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the function (must be a valid JS identifier, max 64 chars)"
},
"description": {
"type": "string",
"description": "The description of the function"
},
"parameters": {
"type": "object",
"description": "JSON Schema definition for the function parameters"
},
"result": {
"description": "The result of the function execution"
},
"call": {
"type": "object",
"description": "Configuration for when this function should be automatically called"
}
},
"required": [
"name",
"description",
"parameters"
]
},
"description": "An array of functions to be added to the conversation"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_send_conversation_message
Send a message to a conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation to send the message to |
entities | object[] | No | — | Known entities |
extensions | object | No | — | Extensions to enhance the bot’s capabilities |
functions | object[] | No | — | An array of functions to be added to the conversation |
text | string | Yes | — | The text of the message to send |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation to send the message to"
},
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The entity type"
},
"begin": {
"type": "number",
"description": "Start offset"
},
"end": {
"type": "number",
"description": "End offset"
},
"text": {
"type": "string",
"description": "The text value of the entity"
},
"replacement": {
"type": "object",
"description": "The replacement value"
}
},
"required": [
"type",
"begin",
"end",
"text"
]
},
"description": "Known entities"
},
"extensions": {
"type": "object",
"description": "Extensions to enhance the bot's capabilities",
"properties": {
"backstory": {
"type": "string",
"description": "Additional backstory for the bot"
},
"datasets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline datasets to provide additional context"
},
"skillsets": {
"type": "array",
"items": {
"type": "object"
},
"description": "Inline skillsets to provide additional abilities"
},
"features": {
"type": "array",
"items": {
"type": "object"
},
"description": "Feature flags to enable specific bot capabilities"
}
}
},
"functions": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the function (must be a valid JS identifier, max 64 chars)"
},
"description": {
"type": "string",
"description": "The description of the function"
},
"parameters": {
"type": "object",
"description": "JSON Schema definition for the function parameters"
},
"result": {
"description": "The result of the function execution"
},
"call": {
"type": "object",
"description": "Configuration for when this function should be automatically called"
}
},
"required": [
"name",
"description",
"parameters"
]
},
"description": "An array of functions to be added to the conversation"
},
"text": {
"type": "string",
"description": "The text of the message to send"
}
},
"required": [
"PCID",
"conversationId",
"text"
]
}
chatbotkit_conversations_update_conversation
Update conversation Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | Conversation Id |
backstory | string | No | — | The backstory this configuration is using |
botId | string | No | — | The ID of the bot this configuration is using |
contactId | string | No | — | The contact id assigned to this conversation |
datasetId | string | No | — | The id of the dataset this configuration is using |
description | string | No | — | The associated description |
meta | object | No | — | Meta data information |
model | string | No | — | A model definition |
moderation | boolean | No | — | The moderation flag for this configuration |
name | string | No | — | The associated name |
privacy | boolean | No | — | The privacy flag for this configuration |
skillsetId | string | No | — | The id of the skillset this configuration is using |
spaceId | string | No | — | The space id assigned to this conversation |
taskId | string | No | — | The task id assigned to this conversation |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "Conversation Id"
},
"backstory": {
"type": "string",
"description": "The backstory this configuration is using"
},
"botId": {
"type": "string",
"description": "The ID of the bot this configuration is using"
},
"contactId": {
"type": "string",
"description": "The contact id assigned to this conversation"
},
"datasetId": {
"type": "string",
"description": "The id of the dataset this configuration is using"
},
"description": {
"type": "string",
"description": "The associated description"
},
"meta": {
"type": "object",
"description": "Meta data information"
},
"model": {
"type": "string",
"description": "A model definition"
},
"moderation": {
"type": "boolean",
"description": "The moderation flag for this configuration"
},
"name": {
"type": "string",
"description": "The associated name"
},
"privacy": {
"type": "boolean",
"description": "The privacy flag for this configuration"
},
"skillsetId": {
"type": "string",
"description": "The id of the skillset this configuration is using"
},
"spaceId": {
"type": "string",
"description": "The space id assigned to this conversation"
},
"taskId": {
"type": "string",
"description": "The task id assigned to this conversation"
}
},
"required": [
"PCID",
"conversationId"
]
}
chatbotkit_conversations_update_conversation_message
Update conversation message Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation |
messageId | string | Yes | — | The ID of the message |
description | string | No | — | The associated description |
entities | object[] | No | — | Known entities |
meta | object | No | — | Meta data information |
name | string | No | — | The associated name |
text | string | No | — | The updated text of the message |
type | string | No | — | The type of the message |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation"
},
"messageId": {
"type": "string",
"description": "The ID of the message"
},
"description": {
"type": "string",
"description": "The associated description"
},
"entities": {
"type": "array",
"items": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "The entity type"
},
"begin": {
"type": "number",
"description": "Start offset"
},
"end": {
"type": "number",
"description": "End offset"
},
"text": {
"type": "string",
"description": "The text value of the entity"
},
"replacement": {
"type": "object",
"description": "The replacement value"
}
},
"required": [
"type",
"begin",
"end",
"text"
]
},
"description": "Known entities"
},
"meta": {
"type": "object",
"description": "Meta data information"
},
"name": {
"type": "string",
"description": "The associated name"
},
"text": {
"type": "string",
"description": "The updated text of the message"
},
"type": {
"type": "string",
"description": "The type of the message",
"enum": [
"user",
"bot",
"reasoning",
"context",
"instruction",
"backstory",
"activity"
]
}
},
"required": [
"PCID",
"conversationId",
"messageId"
]
}
chatbotkit_conversations_upload_conversation_attachment
Upload a file as a conversation attachment Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | Conversation Id |
file | string | Yes | — | The file to upload either as http: or data: URL |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "Conversation Id"
},
"file": {
"type": "string",
"description": "The file to upload either as http: or data: URL"
}
},
"required": [
"PCID",
"conversationId",
"file"
]
}
chatbotkit_conversations_upsert_conversation_contact
Upsert contact Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
conversationId | string | Yes | — | The ID of the conversation |
description | string | No | — | The associated description |
email | string | No | — | The email address of the contact |
fingerprint | string | No | — | The fingerprint of the contact |
meta | object | No | — | Meta data information |
name | string | No | — | The associated name |
nick | string | No | — | The nickname of the contact |
phone | string | No | — | The phone number of the contact |
Show inputSchema
Show inputSchema
{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"conversationId": {
"type": "string",
"description": "The ID of the conversation"
},
"description": {
"type": "string",
"description": "The associated description"
},
"email": {
"type": "string",
"description": "The email address of the contact"
},
"fingerprint": {
"type": "string",
"description": "The fingerprint of the contact"
},
"meta": {
"type": "object",
"description": "Meta data information"
},
"name": {
"type": "string",
"description": "The associated name"
},
"nick": {
"type": "string",
"description": "The nickname of the contact"
},
"phone": {
"type": "string",
"description": "The phone number of the contact"
}
},
"required": [
"PCID",
"conversationId"
]
}

