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
Your API key for authentication. Can also be passed as
api_key query parameter.Request Body
The ID of the board where the ChatNode exists. Can also be passed as
board_id query parameter.The ChatNode ID. Can also be passed as
chat_id query parameter.Optional custom name for the conversation. If not provided, defaults to “API Conversation -
”.
Response
Unique identifier for the newly created conversation
The conversation name
ISO timestamp when the conversation was created
The board ID where the ChatNode exists
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.