Check out our upcoming events and meetups! View events →
Get feedback about a brand by ID. This endpoint can be used after creating or revetting a brand.
Possible values for .category[].id:
TAX_ID - Data mismatch related to tax id and its associated properties.STOCK_SYMBOL - Non public entity registered as a public for profit entity or
the stock information mismatch.GOVERNMENT_ENTITY - Non government entity registered as a government entity.
Must be a U.S. government entity.NONPROFIT - Not a recognized non-profit entity. No IRS tax-exempt status
found.OTHERS - Details of the data misrepresentation if any.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.getFeedback('brandId');
console.log(response.brandId);{
"brandId": "d88dd2aa-1bb9-4ef0-9ec8-1752b80316a5",
"category": [
{
"id": "TAX_ID",
"displayName": "Tax Id",
"description": "Tax Id does not match with the company name or business type.",
"fields": [
"ein",
"companyName",
"entityType"
]
}
]
}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.
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.getFeedback('brandId');
console.log(response.brandId);{
"brandId": "d88dd2aa-1bb9-4ef0-9ec8-1752b80316a5",
"category": [
{
"id": "TAX_ID",
"displayName": "Tax Id",
"description": "Tax Id does not match with the company name or business type.",
"fields": [
"ein",
"companyName",
"entityType"
]
}
]
}