Skip to main content
POST
/
api
/
v2
/
conversations
Create Conversation
curl --request POST \
  --url https://api.example.com/api/v2/conversations \
  --header 'Content-Type: application/json' \
  --data '
{
  "project_ids": [
    "<string>"
  ],
  "agent_ids": [
    "<string>"
  ]
}
'
{
  "message": "<string>",
  "conversation_id": "<string>"
}

Headers

x-api-key
string | null
x-user-id
string | null

Query Parameters

hidden
boolean
default:true

Whether to hide this conversation from the web UI

Body

application/json
project_ids
string[]
required
agent_ids
string[]
required

Response

Successful Response

message
string
required
conversation_id
string
required