curl --request POST \
  --url http://localhost:8000/agent/{agentName}/conversation/{conversationId}/reply \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "appConfig": {},
  "content": {
    "userMessage": "<string>",
    "payload": {},
    "toolCallResults": [
      {
        "id": "<string>",
        "result": {}
      }
    ]
  }
}'
{
  "conversationId": "<string>",
  "requestId": "<string>",
  "message": "<string>",
  "data": {},
  "toolCalls": [
    {
      "id": "<string>",
      "name": "<string>",
      "parameters": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

agentName
string
required

This refers to the folder name of your agent

conversationId
string
required

Conversation ID to reply to

Body

application/json
appConfig
object

App Config value to use for executing your Agent

content
object

Response

200 - application/json
OK
conversationId
string
required
requestId
string
required
message
string

String-based message sent from the Agent

data
object

Additional data sent from the Agent

toolCalls
object[]

The tools that needs to be executed from the client-side