Skip to main content

Get all test suite names

GET 
/ai/assistants/tests/test-suites

Retrieves a list of all distinct test suite names available to the current user

Responses

200: Returns an array of unique test suite names for filtering and organization

422: Validation Error

Request samples


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

Response samples


{
"data": [
[
"customer-support",
"sales-flow",
"onboarding"
]
]
}