Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Consolidated filter parameter (deepObject style). Originally: filter[product]
Response
A list of black box test results.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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
}
]
}
]
}Returns the results of the various black box tests
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
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
}
]
}
]
}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?