v51

latestOpenAPI 3.0.3raw.githubusercontent.com2026-08-02172186551.1 KB
10DLC

Create 10DLC brand

Create a 10DLC brand registration. The brand starts in draft status. Submit it for review using the submit endpoint.

post/v1/10dlc/brands

Request body

entityType'PRIVATE_PROFIT' | 'PUBLIC_PROFIT' | 'NON_PROFIT' | 'GOVERNMENT' | 'SOLE_PROPRIETOR' required

Business entity type for 10DLC brand registration.

displayNamestring required

Display name of the brand.

companyNamestring

Legal company name.

einstring

Employer Identification Number (format: XX-XXXXXXX).

firstNamestring
lastNamestring
emailstring email required
phonestring required

Contact phone in E.164 format.

streetstring required
citystring required
statestring required
postalCodestring required
countrystring required

Two-letter ISO country code.

websitestring uri
verticalstring required

Industry vertical.

stockSymbolstring
stockExchangestring

Example request

{
  "displayName": "Acme Corp",
  "ein": "12-3456789",
  "phone": "+14155551234",
  "country": "US",
  "vertical": "Technology"
}

Response

Brand created in draft status.

Example response

{
  "brand": {
    "displayName": "Acme Corp",
    "ein": "12-3456789",
    "phone": "+14155551234",
    "country": "US",
    "vertical": "Technology"
  }
}