Skip to main content
PUT
/
10dlc
/
brands
/
{brand_id}
Update a 10DLC Brand
curl --request PUT \
  --url https://api.wavix.com/v3/10dlc/brands/{brand_id} \
  --header 'Content-Type: application/json' \
  --data '{
  "city": "Miami",
  "company_name": "Company legal name",
  "country": "US",
  "dba_name": "New Brand",
  "ein_taxid": "123456789",
  "ein_taxid_country": "US",
  "email": "email@brand.com",
  "entity_type": "PRIVATE_PROFIT",
  "first_name": "John",
  "last_name": "Dow",
  "phone_number": "12123450099",
  "stock_exchange": null,
  "stock_symbol": null,
  "street_address": "10, Street name",
  "vertical": "HEALTHCARE",
  "website": "https://brand.com",
  "zip": "12345",
  "state_or_province": "AK"
}'
{
  "brand_id": "BM20QP9",
  "city": "Miami",
  "company_name": "Company legal name",
  "country": "US",
  "created_at": "2024-07-24T08:10:49.000Z",
  "dba_name": "New Brand",
  "ein_taxid": "99999999",
  "ein_taxid_country": "US",
  "email": "email@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.000Z",
  "vertical": "HEALTHCARE",
  "website": "https://brand.com",
  "zip": "12345"
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

brand_id
string
required

Unique identifier of a Brand

Example:

"BM20QP9"

Body

application/json

A request to update a 10DLC Brand details

dba_name
string
required

Brand name or DBA

Example:

"Brand"

company_name
string
required

Legal name of the company

Example:

"Company"

entity_type
enum<string>
required

Brand entity type The company entity type

Available options:
PRIVATE_PROFIT,
PUBLIC_PROFIT,
NON_PROFIT,
GOVERNMENT
Example:

"PRIVATE_PROFIT"

vertical
string
required

The segment the business operates in

Example:

"HEALTHCARE"

ein_taxid
string
required

IRS Employee Identification Number (EIN) for US-based or foreign companies with EIN. The numeric portion of Tax ID for companies incorporated in other countries.

Example:

"999999999"

ein_taxid_country
string
required

2-letter ISO country code of the Tax ID issuing country

Example:

"US"

first_name
string
required

The first name of the business contact

Example:

"John"

last_name
string
required

The last name of the business contact

Example:

"Dow"

phone_number
string
required

The support contact telephone in E.164 format

Example:

"12123450099"

email
string
required

The email address of the support contact

Example:

"support@brand.com"

street_address
string
required

Street name and house number

Example:

"10, City Name"

city
string
required

The city name

Example:

"Miami"

country
string
required

2-letter ISO country code the business address

Example:

"US"

zip
string
required

The business zip or postal code

Example:

"12345"

website
string

The website of the business

Example:

"https://brand.com"

stock_symbol
string | null

The stock symbol of the Brand. For PUBLIC_PROFIT Brands only.

stock_exchange
string | null

The stock exchange code. For PUBLIC_PROFIT Brands only.

state_or_province
string | null

State or province. For the United States, use 2 character codes.

Example:

"FL"

Response

A 10DLC Brand object

brand_id
string
required

TCR Brand unique identified

Example:

"BM20QP9"

dba_name
string
required

Brand name or DBA

Example:

"Brand"

company_name
string
required

Legal name of the company

Example:

"Company"

entity_type
enum<string>
required

Brand entity type The company entity type

Available options:
PRIVATE_PROFIT,
PUBLIC_PROFIT,
NON_PROFIT,
GOVERNMENT
Example:

"PRIVATE_PROFIT"

vertical
string
required

The segment the business operates in

Example:

"HEALTHCARE"

ein_taxid
string
required

IRS Employee Identification Number (EIN) for US-based or foreign companies with EIN. The numeric portion of Tax ID for companies incorporated in other countries.

Example:

"999999999"

ein_taxid_country
string
required

2-letter ISO country code of the Tax ID issuing country

Example:

"US"

status
enum<string>
required

10DLC Brand Identity verification status Brand identity verification status

Available options:
REVIEW,
VERIFIED,
UNVERIFIED,
VETTED_VERIFIED
Example:

"VERIFIED"

first_name
string
required

The first name of the business contact

Example:

"John"

last_name
string
required

The last name of the business contact

Example:

"Dow"

phone_number
string
required

The support contact telephone in E.164 format

Example:

"12123450099"

email
string
required

The email address of the support contact

Example:

"support@brand.com"

street_address
string
required

Street name and house number

Example:

"10, City Name"

city
string
required

The city name

Example:

"Miami"

country
string
required

2-letter ISO country code the business address

Example:

"US"

zip
string
required

The business zip or postal code

Example:

"12345"

feedback
string | null
required

The Brand Identity verification feedback, if any

created_at
string<date-time>
required

Date and time the Brand was created

Example:

"2024-07-24T08:29:09.000Z"

updated_at
string<date-time>
required

Date and time the Brand was updated

Example:

"2024-07-24T08:29:09.000Z"

website
string

The website of the business

Example:

"https://brand.com"

stock_symbol
string | null

The stock symbol of the Brand. For PUBLIC_PROFIT Brands only.

stock_exchange
string | null

The stock exchange code. For PUBLIC_PROFIT Brands only.

state_or_province
string | null

State or province. For the United States, use 2 character codes.

Example:

"FL"

mock
boolean
default:false

Indicates a mock Brand. You can create mock Brands for testing purposes only, production traffic with the mock Brands is prohibited.

Example:

false

I