Skip to main content
DELETE
/
ai
/
assistants
/
tests
/
{test_id}
JavaScript
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>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

test_id
string
required

Response

Returns success status when test is successfully deleted

The response is of type any.