10DLC
Update a 10DLC Brand
Updates the 10DLC Brand identified by brand_id. Changing identity fields, including ein_taxid, ein_taxid_country, and entity_type, resets the Brand status to UNVERIFIED and triggers automatic re-submission. Brands in VETTED_VERIFIED status or with active Campaigns cannot be updated.
put/v3/10dlc/brands/{brand_id}
Path parameters
brand_idstring required
Example:BM20QP9
The unique ID of the 10DLC Brand.
Request body
Example request
{
"dba_name": "Brand",
"company_name": "Company",
"entity_type": "PRIVATE_PROFIT",
"vertical": "HEALTHCARE",
"ein_taxid": "999999999",
"ein_taxid_country": "US",
"website": "https://brand.com",
"first_name": "John",
"last_name": "Dow",
"phone_number": "12123450099",
"email": "support@brand.com",
"street_address": "10, City Name",
"city": "Miami",
"state_or_province": "FL",
"zip": "12346",
"country": "US"
}Response
Returns the updated 10DLC Brand.
Example response
{
"brand_id": "BM20QP9",
"city": "Miami",
"company_name": "Company legal name",
"country": "US",
"created_at": "2024-07-24T08:10:49",
"dba_name": "New Brand",
"ein_taxid": "99999999",
"ein_taxid_country": "US",
"email": "support@brand.com",
"entity_type": "PRIVATE_PROFIT",
"feedback": null,
"first_name": "John",
"last_name": "Dow",
"mock": false,
"phone_number": "12123450099",
"state_or_province": "FL",
"status": "REVIEW",
"stock_exchange": null,
"stock_symbol": null,
"street_address": "10, Street Name",
"updated_at": "2024-07-24T09:02:19",
"vertical": "HEALTHCARE",
"website": "https://brand.com",
"zip": "12345"
}