Skip to main content
PUT
/
10dlc
/
brands
/
{brand_id}
Update a 10DLC Brand
curl --request PUT \
  --url 'https://api.wavix.com/v1/10dlc/brands/{brand_id}?appid=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "dba_name": "Brand",
  "company_name": "Company",
  "entity_type": "PRIVATE_PROFIT",
  "vertical": "HEALTHCARE",
  "ein_taxid": "999999999",
  "ein_taxid_country": "US",
  "website": "https://brand.com",
  "stock_symbol": null,
  "stock_exchange": null,
  "first_name": "John",
  "last_name": "Dow",
  "phone_number": "12123450099",
  "email": "[email protected]",
  "street_address": "10, City Name",
  "city": "Miami",
  "state_or_province": "FL",
  "zip": "12346",
  "country": "US",
  "mock": false
}
'
{
  "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 protected]",
  "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

Brand name or DBA

Maximum string length: 255
Example:

"Brand"

company_name
string

Legal name of the company

Maximum string length: 255
Example:

"Company"

entity_type
enum<string>

The company entity type

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

"PRIVATE_PROFIT"

vertical
enum<string>

The segment the business operates in

Available options:
HEALTHCARE,
PROFESSIONAL,
RETAIL,
TECHNOLOGY,
EDUCATION,
FINANCIAL,
NON_PROFIT,
GOVERNMENT,
OTHER
Example:

"HEALTHCARE"

ein_taxid
string

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.

Maximum string length: 21
Example:

"999999999"

ein_taxid_country
string

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

Required string length: 2
Example:

"US"

website
string

The website of the business

Maximum string length: 255
Example:

"https://brand.com"

stock_symbol
string | null

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

Maximum string length: 10
Example:

null

stock_exchange
string | null

The stock exchange code. For PUBLIC_PROFIT Brands only.

Maximum string length: 10
Example:

null

first_name
string

The first name of the business contact

Maximum string length: 100
Example:

"John"

last_name
string

The last name of the business contact

Maximum string length: 100
Example:

"Dow"

phone_number
string

The support contact telephone in E.164 format

Maximum string length: 20
Example:

"12123450099"

email
string<email>

The email address of the support contact

Maximum string length: 100
street_address
string

Street name and house number

Maximum string length: 100
Example:

"10, City Name"

city
string

The city name

Maximum string length: 100
Example:

"Miami"

state_or_province
string | null

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

Maximum string length: 20
Example:

"FL"

zip
string

The business zip or postal code

Maximum string length: 10
Example:

"12346"

country
string

2-letter ISO country code the business address

Required string length: 2
Example:

"US"

mock
boolean
default:false

Mock flag for testing (optional, defaults to false)

Example:

false

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

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

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

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
required

Date and time the Brand was created

Example:

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

updated_at
string
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