Skip to main content
POST
/
triggers
/
conversation
Send Conversation Message
curl --request POST \
  --url https://api.example.com/triggers/conversation \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "<string>",
  "session_id": "<string>"
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Body

application/json

Request body for sending a message to the organization's main conversation agent.

Attributes: message: The user message to send. session_id: Session ID for conversation continuity. New session if None.

message
string
required
session_id
string | null

Response

Successful Response