Skip to main content

Get assistant test by ID

GET 
/ai/assistants/tests/:test_id

Retrieves detailed information about a specific assistant test

Request

Path Parameters

    test_id Test Idrequired

Responses

200: Returns complete test configuration including rubric, schedule, and metadata

422: Validation Error

Request samples


curl -L 'https://api.telnyx.com/v2/ai/assistants/tests/:test_id' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>'

Response samples


{
"test_id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Customer Support Bot Test",
"description": "string",
"telnyx_conversation_channel": "phone_call",
"destination": "string",
"max_duration_seconds": 0,
"test_suite": "string",
"instructions": "string",
"rubric": [
[
{
"criteria": "Responds within 30 seconds",
"name": "Response Time"
}
]
],
"created_at": [
"2024-01-15T09:00:00Z"
]
}