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
Example: agent
Request Body schema: application/json

Message details

message
required
string
conversationId
string
Responses
200

Return agent id

400

Bad Request.

401

Unauthorized access.

403

Forbidden.

404

The specified resource was not found

429

Too Many Requests.

500

Internal Server Error.

503

Service Unavailable.

default

Default error

post/api/ai/agents/{agent_id}/conversations
Request samples
application/json
{
  • "message": "string",
  • "conversationId": "string"
}
Response samples
application/json
{
  • "conversationId": "abc-def-ghi-etc",
  • "text": "this is an example"
}