Post Conversation Message

Posts a conversation message to an asset, optionally with a conversation id. Always returns a text response for external use cases.

SecurityBearerAuth or ApiKeyAuth
Request
path Parameters
agent_id
required
string (Agent Id)
Request Body schema: application/json
message
required
string (Message)
conversationId
string (Conversationid)
Responses
200

Successful Response

422

Unprocessable Entity

post/api/ai/agents/{agent_id}/conversations
Request samples
application/json
{
  • "message": "string",
  • "conversationId": "string"
}
Response samples
application/json
{
  • "text": "string"
}