import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const brand = await client.brand.delete('brandId');
console.log(brand);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Delete Brand. This endpoint is used to delete a brand. Note the brand cannot be deleted if it contains one or more active campaigns, the campaigns need to be inactive and at least 3 months old due to billing purposes.
import Telnyx from 'telnyx';
const client = new Telnyx({
apiKey: 'My API Key',
});
const brand = await client.brand.delete('brandId');
console.log(brand);{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?