Get specific test run details
GET/ai/assistants/tests/:test_id/runs/:run_id
Retrieves detailed information about a specific test run execution
Request
Path Parameters
test_id Test Idrequired
run_id Run Idrequired
Responses
200: Returns complete test run details including results, logs, and performance metrics
- application/json
422: Validation Error
- application/json
Request samples
curl -L 'https://api.telnyx.com/v2/ai/assistants/tests/:test_id/runs/:run_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'
Response samples
{
"run_id": "987fcdeb-51a2-43d1-b456-426614174000",
"test_id": "123e4567-e89b-12d3-a456-426614174000",
"status": "pending",
"triggered_by": [
"manual",
"cron"
],
"completed_at": "2024-07-29T15:51:28.071Z",
"logs": "string",
"conversation_id": "string",
"conversation_insights_id": "string",
"test_suite_run_id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
"created_at": [
"2024-01-15T10:30:00Z"
],
"updated_at": "2024-07-29T15:51:28.071Z",
"detail_status": [
{
"name": "string",
"status": "pending"
}
]
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}