agent-sessions
Get Conversation Detail
Get full conversation history with all messages.
Returns complete conversation transcript including:
- All user messages
- All agent responses
- Tool executions
- Timestamps
- Metadata
Use this for:
- Reviewing agent performance
- Debugging conversations
- Customer service audits
- Training data collection
Example response:
{
"conversation_id": "conv-123",
"agent_id": "agent-456",
"created_at": "2025-11-25T10:00:00Z",
"updated_at": "2025-11-25T10:05:00Z",
"messages": [
{
"role": "user",
"content": "What is your refund policy?",
"timestamp": "2025-11-25T10:00:00Z"
},
{
"role": "assistant",
"content": "Our refund policy...",
"timestamp": "2025-11-25T10:00:02Z",
"metadata": {"selected_tool": null, "execution_time_ms": 850}
}
]
}
GET
Get Conversation Detail
Documentation Index
Fetch the complete documentation index at: https://docs.mrassistant.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Get Conversation Detail