Skip to main content
POST
/
api
/
conversations
/
{id}
/
messages
Send message
curl --request POST \
  --url https://api.agentixx.io/api/conversations/{id}/messages \
  --header 'Content-Type: application/json' \
  --header 'x-tenant-id: <api-key>' \
  --cookie better-auth.session_token= \
  --data '
{
  "text": "Hello, how can I help you?"
}
'
{}

Authorizations

better-auth.session_token
string
cookie
required

Session cookie set by Better Auth on sign-in.

x-tenant-id
string
header
required

Tenant/workspace UUID. Required on all /api/* endpoints.

Path Parameters

id
string<uuid>
required

Body

application/json

Send a message in a conversation

text
string
required
Minimum string length: 1

Response

Message sent

{key}
any