Skip to main content
POST
/
api
/
ai
/
process
Generate AI response for conversation
curl --request POST \
  --url https://your-instance.example.com/api/ai/process \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "conversationId": "<string>",
  "mergeContextPrompt": "<string>"
}
'
{}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
conversationId
string
required
mergeContextPrompt
string

Response

AI response generated

Generic response envelope. Endpoint-specific fields are intentionally open.