List Threads
curl --request GET \
--url https://{tenant_id}.api.useago.com/api/v1/conversations \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/conversations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"object": "thread",
"user_email": "<string>",
"evaluation": "<string>",
"evaluation_comment": "<string>",
"reviewed_at": "<string>",
"admin_status": {
"id": "<string>",
"name": "<string>",
"object": "thread_admin_status",
"color": "<string>"
},
"admin_tags": [],
"llm_judge_evaluated": false,
"llm_judge_need_review": false,
"cx_score": 123,
"created_at": "<string>",
"updated_at": "<string>",
"message_count": 0
}
],
"has_more": true,
"total": 123,
"object": "list"
}Conversations
List Threads
List all conversation threads.
GET
/
api
/
v1
/
conversations
List Threads
curl --request GET \
--url https://{tenant_id}.api.useago.com/api/v1/conversations \
--header 'X-API-Key: <api-key>'import requests
url = "https://{tenant_id}.api.useago.com/api/v1/conversations"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://{tenant_id}.api.useago.com/api/v1/conversations', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"data": [
{
"id": "<string>",
"object": "thread",
"user_email": "<string>",
"evaluation": "<string>",
"evaluation_comment": "<string>",
"reviewed_at": "<string>",
"admin_status": {
"id": "<string>",
"name": "<string>",
"object": "thread_admin_status",
"color": "<string>"
},
"admin_tags": [],
"llm_judge_evaluated": false,
"llm_judge_need_review": false,
"cx_score": 123,
"created_at": "<string>",
"updated_at": "<string>",
"message_count": 0
}
],
"has_more": true,
"total": 123,
"object": "list"
}