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
- application/json
422: Validation Error
- application/json
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"
]
]
}
{
"detail": [
{
"loc": [
"string",
0
],
"msg": "string",
"type": "string"
}
]
}