Skip to main content
POST
/
org
/
{org_id}
/
chat
Send a chat message
curl --request POST \
  --url https://v2-nova-api.prod.czmx.in/org/{org_id}/chat \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>",
  "conversation_id": "<string>"
}
'
{
  "conversation_id": "<string>",
  "message_id": "<string>",
  "response": "<string>",
  "tools_used": [
    "<string>"
  ]
}

Path Parameters

org_id
string
required

Organization ID

Body

application/json

Chat message

message
string
required
Required string length: 1 - 2000
conversation_id
string

Response

OK

conversation_id
string
message_id
string
response
string
tools_used
string[]