Conversation Endpoints
Create conversation
Create a new conversation thread for a ChatNode
POST
This endpoint creates a new conversation (thread) for a ChatNode. The returned conversation ID can be used with
/api/conversation/{conversationId} to send messages.
Headers
string
required
Your API key for authentication. Can also be passed as
api_key query parameter.Request Body
string
required
The ID of the board where the ChatNode exists. Can also be passed as
board_id query parameter.string
required
The ChatNode ID. Can also be passed as
chat_id query parameter.string
Optional custom name for the conversation. If not provided, defaults to “API Conversation -
”.
Response
string
Unique identifier for the newly created conversation
string
The conversation name
string
ISO timestamp when the conversation was created
string
The board ID where the ChatNode exists
string
The ChatNode ID associated with this conversation
Creating a conversation does not send a message. To send a message, use POST
/api/conversation/ {conversationId} after you create the conversation.