Check out our upcoming events and meetups! View events →
Retrieves a list of all distinct test suite names available to the current user
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const testSuites = await client.ai.assistants.tests.testSuites.list();
console.log(testSuites.data);{
"data": [
"customer-support",
"sales-flow",
"onboarding"
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Returns an array of unique test suite names for filtering and organization
Response containing all available test suite names.
Returns a list of distinct test suite names that can be used for filtering and organizing tests.
Array of unique test suite names available to the user.
[
"customer-support",
"sales-flow",
"onboarding"
]
Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const testSuites = await client.ai.assistants.tests.testSuites.list();
console.log(testSuites.data);{
"data": [
"customer-support",
"sales-flow",
"onboarding"
]
}