Skip to content
Sign up

Conversations

Create Conversation
post/v1/conversations/
List Conversations
get/v1/conversations/
Retrieve Conversation
get/v1/conversations/{conversation_id}
ModelsExpand Collapse
Conversation = object { id, agent_id, created_at, 5 more }

Represents a conversation on an agent for concurrent messaging.

id: string

The unique identifier of the conversation.

agent_id: string

The ID of the agent this conversation belongs to.

created_at: optional string

The timestamp when the object was created.

formatdate-time
created_by_id: optional string

The id of the user that made this object.

in_context_message_ids: optional array of string

The IDs of in-context messages for the conversation.

last_updated_by_id: optional string

The id of the user that made this object.

summary: optional string

A summary of the conversation.

updated_at: optional string

The timestamp when the object was last updated.

formatdate-time
CreateConversation = object { summary }

Request model for creating a new conversation.

summary: optional string

A summary of the conversation.

ConversationsMessages

List Conversation Messages
get/v1/conversations/{conversation_id}/messages
Send Conversation Message
post/v1/conversations/{conversation_id}/messages
Retrieve Conversation Stream
post/v1/conversations/{conversation_id}/stream