import sys
sys.path.append("../plivo-python")
import plivo
client = plivo.RestClient("<auth_id>", "<auth_token>")

bresponse = client.brand.delete(brand_id='<Brand_id>')
print(bresponse)
{
"api_id": "785ed2dc-7493-11ed-97ac-0242ac110003",
"brand_id": "BCHVILW",
"message": "Brand Deactivated"
}

Deletes a particular 10DLC brand from your account. This action is irreversible and is only allowed for brands with no associated active campaigns.

API Endpoint

DELETE
https://api.plivo.com/v1/Account/{auth_id}/Brand/{brand_id}/

Arguments

No arguments need to be passed.

Returns

api_id, brand_id and a confirmation (or error message). 

import sys
sys.path.append("../plivo-python")
import plivo
client = plivo.RestClient("<auth_id>", "<auth_token>")

bresponse = client.brand.delete(brand_id='<Brand_id>')
print(bresponse)
{
"api_id": "785ed2dc-7493-11ed-97ac-0242ac110003",
"brand_id": "BCHVILW",
"message": "Brand Deactivated"
}