cURL
curl --request POST \ --url https://api.example.com/api/conversations/{conversation_id}/ask_agent \ --header 'Content-Type: application/json' \ --data ' { "question": "<string>" } '
{ "response": "<string>" }
Ask the agent a simple question without affecting conversation state.
Payload to ask the agent a simple question.
The question to ask the agent
Successful Response
Response containing the agent's answer.
The agent's response to the question
Was this page helpful?