Diagnostic EngineConversations
Get conversation
Retrieve the full state of an ongoing or completed conversation.
AuthorizationBearer <token>
In: header
Path Parameters
conversation_idConversation Id
Conversation ID
Response Body
curl -X GET "https://api.avey.ai/ddx/v1/conversations/string"{
"id": "conv_e389786b611e",
"created_at": 1774530598,
"is_complete": false,
"patient": {
"age": 34,
"sex": "male"
},
"personality": "professional",
"language": "en",
"coding_system": "snomed",
"messages": [
{
"role": "user",
"content": "I have a headache and feel nauseous",
"created_at": 1774530607
},
{
"role": "assistant",
"content": "Where is your headache located?",
"created_at": 1774530618
}
],
"findings": [
{
"concept": {
"id": "422587007",
"term": "Nausea",
"description": ""
},
"status": "present",
"is_chief": true
},
{
"concept": {
"id": "25064002",
"term": "Headache",
"description": ""
},
"status": "present",
"is_chief": true
}
]
}{
"error": {
"code": "string",
"message": "string"
}
}{
"error": {
"code": "string",
"message": "string"
}
}How is this guide?