Skip to content

Talk to the assistant

POST
/api/v1/ai/conversations
curl --request POST \
--url https://example.com/api/v1/ai/conversations \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{ "conversationId": "example", "message": "example" }'
Media typeapplication/json
object
conversationId
string
message
required
string
Examplegenerated
{
"conversationId": "example",
"message": "example"
}

Created

Problem Details (RFC 9457)

Media typeapplication/problem+json
object
code
required
string
detail
string
instance
string
status
required
integer
title
required
string
type
required
string
Examplegenerated
{
"code": "example",
"detail": "example",
"instance": "example",
"status": 1,
"title": "example",
"type": "example"
}