Check out our upcoming events and meetups! View events →
Order new external vetting for a brand
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.messaging10dlc.brand.externalVetting.order('brandId', {
evpId: 'evpId',
vettingClass: 'vettingClass',
});
console.log(response.createDate);{
"evpId": "<string>",
"vettingId": "<string>",
"vettingToken": "<string>",
"vettingScore": 123,
"vettingClass": "<string>",
"vettedDate": "<string>",
"createDate": "<string>"
}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.
Successful Response
External vetting provider ID for the brand.
10Unique ID that identifies a vetting transaction performed by a vetting provider. This ID is provided by the vetting provider at time of vetting.
Required by some providers for vetting record confirmation.
Vetting score ranging from 0-100.
Identifies the vetting classification.
Vetting effective date. This is the date when vetting was completed, or the starting effective date in ISO 8601 format. If this date is missing, then the vetting was not complete or not valid.
Vetting submission date. This is the date when the vetting request is generated in ISO 8601 format.
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.messaging10dlc.brand.externalVetting.order('brandId', {
evpId: 'evpId',
vettingClass: 'vettingClass',
});
console.log(response.createDate);{
"evpId": "<string>",
"vettingId": "<string>",
"vettingToken": "<string>",
"vettingScore": 123,
"vettingClass": "<string>",
"vettedDate": "<string>",
"createDate": "<string>"
}