List 10DLC Brands
Returns a paginated list of 10DLC Brands for the authenticated account, filtered by date, name, legal name, and status.
Query parameters
Filters Brands by dba_name (doing-business-as name). Matches partial values.
Filters Brands by company_name (registered legal name). Matches partial values.
Filters Brands by business entity type, such as PRIVATE_PROFIT.
Filters Brands by identity verification status, such as VERIFIED.
Filters Brands by registration country, as an ISO 3166-1 alpha-2 code (e.g., US).
When true, includes deleted Brands in the results. Default false.
Filters Brands by their Employer Identification Number (EIN) or tax ID.
When true, returns only mock Brands used for testing. Default false.
Returns brands created on or before this date, in YYYY-MM-DD format.
Returns brands created on or after this date, in YYYY-MM-DD format.
Page number to retrieve. Default 1.
Number of records to return per page. Default 25.
Response
Returns a paginated list of 10DLC Brands.
Example response
{
"items": [
{
"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": "999999999",
"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": "VERIFIED",
"stock_exchange": null,
"stock_symbol": null,
"street_address": "10, Street Name",
"updated_at": "2024-07-24T08:29:09",
"vertical": "HEALTHCARE",
"website": "https://brand.com",
"zip": "12345"
}
],
"pagination": {
"current_page": 1,
"per_page": 25,
"total": 1,
"total_pages": 1
}
}