v53

OpenAPI 3.1.0raw.githubusercontent.com2026-08-041,1941,9384.1 MB
Assistants

List assistant tests with pagination

Retrieves a paginated list of assistant tests with optional filtering capabilities

get/ai/assistants/tests

Query parameters

test_suitestring

Filter tests by test suite name

Filter tests by test suite name

telnyx_conversation_channelstring

Filter tests by communication channel (e.g., 'web_chat', 'sms')

Filter tests by communication channel (e.g., 'web_chat', 'sms')

destinationstring

Filter tests by destination (phone number, webhook URL, etc.)

Filter tests by destination (phone number, webhook URL, etc.)

numberinteger

Page number to retrieve (1-based indexing)

sizeinteger

Number of tests to return per page (1-100)

Consolidated page parameter (deepObject style). Originally: page[size], page[number]

Response

Returns paginated test list with metadata for navigation and filtering

Example response

{
  "data": [
    {
      "created_at": "2024-01-16T09:00:00Z",
      "name": "Customer Support Bot Test",
      "rubric": [
        {
          "criteria": "Responds within 30 seconds",
          "name": "Response Time"
        }
      ],
      "test_id": "123e4567-e89b-12d3-a456-426614174000"
    }
  ]
}