import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.seti.retrieveBlackBoxTestResults();
console.log(response.data);
Returns the results of the various black box tests
GET
/
seti
/
black_box_test_results
JavaScript
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
const response = await client.seti.retrieveBlackBoxTestResults();
console.log(response.data);