cURL
curl --request POST \ --url http://localhost:8000/agent/{agentName}/conversation \ --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": {} } ] }
Start a new 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
OK
The response is of type object.
object