cURL
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": {} } ] }
Reply to a conversation with an agent.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
This refers to the folder name of your agent
Conversation ID to reply to
App Config value to use for executing your Agent
Show child attributes
For chat-based agents, this is the user message sent from the client.
Additional data to pass to your pass
ID associated with the tool-call
OK
String-based message sent from the Agent
Additional data sent from the Agent
The tools that needs to be executed from the client-side
Unique ID associated with the call request
Name of the tool to call
Input Params to tool