Check out our upcoming events and meetups! View events →
This endpoint is used to list all brands associated with your organization.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: process.env['TELNYX_API_KEY'], // This is the default and can be omitted
});
// Automatically fetches more pages as needed.
for await (const brandListResponse of client.messaging10dlc.brand.list()) {
console.log(brandListResponse.identityStatus);
}{
"records": [
{
"brandId": "4b206179-f731-8ab7-f19c-34e19d22ide9",
"tcrBrandId": "BBRAND1",
"entityType": "PRIVATE_PROFIT",
"identityStatus": "VERIFIED",
"companyName": "Example Company Inc.",
"displayName": "Example Company",
"email": "examplename@examplecompany.com",
"website": "www.examplecompany.com",
"failureReasons": "<string>",
"status": "OK",
"createdAt": "2021-03-08T17:57:48.801186",
"updatedAt": "2021-03-08T17:57:48.801186",
"assignedCampaingsCount": 2
}
],
"page": 1,
"totalRecords": 1
}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.
x >= 1number of records per page. maximum of 500
Specifies the sort order for results. If not given, results are sorted by createdAt in descending order. Specifies the sort order for results. If not given, results are sorted by created_at in descending order.
assignedCampaignsCount, -assignedCampaignsCount, brandId, -brandId, createdAt, -createdAt, displayName, -displayName, identityStatus, -identityStatus, status, -status, tcrBrandId, -tcrBrandId Filter results by the Telnyx Brand id
"826ef77a-348c-445b-81a5-a9b13c68fbfe"
Filter results by the TCR Brand id
"BBAND1"
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
});
// Automatically fetches more pages as needed.
for await (const brandListResponse of client.messaging10dlc.brand.list()) {
console.log(brandListResponse.identityStatus);
}{
"records": [
{
"brandId": "4b206179-f731-8ab7-f19c-34e19d22ide9",
"tcrBrandId": "BBRAND1",
"entityType": "PRIVATE_PROFIT",
"identityStatus": "VERIFIED",
"companyName": "Example Company Inc.",
"displayName": "Example Company",
"email": "examplename@examplecompany.com",
"website": "www.examplecompany.com",
"failureReasons": "<string>",
"status": "OK",
"createdAt": "2021-03-08T17:57:48.801186",
"updatedAt": "2021-03-08T17:57:48.801186",
"assignedCampaingsCount": 2
}
],
"page": 1,
"totalRecords": 1
}