Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Path Parameters
Response
Returns success status when test is successfully deleted
The response is of type any.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const test = await client.ai.assistants.tests.delete('test_id');
console.log(test);"<any>"Permanently removes an assistant test and all associated data
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const test = await client.ai.assistants.tests.delete('test_id');
console.log(test);"<any>"Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Returns success status when test is successfully deleted
The response is of type any.
Was this page helpful?