import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const externalVettings = await client.brand.externalVetting.list('brandId');
console.log(externalVettings);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Get list of valid external vetting record for a given brand
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const externalVettings = await client.brand.externalVetting.list('brandId');
console.log(externalVettings);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?