Check out our upcoming events and meetups! View events →
Returns the results of the various black box tests
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);{
"data": [
{
"record_type": "black_box_test_result",
"product": "cloud_storage",
"black_box_tests": [
{
"record_type": "black_box_test",
"id": "msg_overview_outbound_sms",
"result": 0.999
}
]
}
]
}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.
Consolidated filter parameter (deepObject style). Originally: filter[product]
Show child attributes
A list of black box test results.
Show child attributes
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 response = await client.seti.retrieveBlackBoxTestResults();
console.log(response.data);{
"data": [
{
"record_type": "black_box_test_result",
"product": "cloud_storage",
"black_box_tests": [
{
"record_type": "black_box_test",
"id": "msg_overview_outbound_sms",
"result": 0.999
}
]
}
]
}