v50

latestOpenAPI 3.1.0MITraw.githubusercontent.com2026-06-16122182589.7 KB
10DLC

Appeal a 10DLC Brand identity verification

Submits an appeal for 10DLC brand identity verification. Provide any additional documentation to support the appeal. Use appeal_category to specify the appeal type:

  • VERIFY_TAX_ID — Use if the brand is UNVERIFIED due to a tax ID mismatch. Applies to private companies, public companies, non-profits, and government entities.
  • VERIFY_NON_PROFIT — Use if a non-profit brand is UNVERIFIED or VERIFIED but missing tax-exempt status.
  • VERIFY_GOVERNMENT — Use if a government brand is UNVERIFIED or VERIFIED but missing government entity status.
post/v3/10dlc/brands/{brand_id}/appeals

Path parameters

brand_idstring required
Example:BM20QP9

The unique ID of the 10DLC Brand.

Request body

appeal_categoriesstring[] required

List of appeal categories. Allowed values: VERIFY_TAX_ID, VERIFY_NON_PROFIT, VERIFY_GOVERNMENT

evidencestring[] required

List of evidence IDs associated with the appeal.

explanationstring

Appeal comment or justification.

Example request

{
  "appeal_categories": [
    "VERIFY_TAX_ID"
  ],
  "evidence": [
    "855dff49-c097-4645-3983-08dcb9856232"
  ],
  "explanation": "Find the company incorporation docs attached and please review the Brand Identity status."
}

Response

Returns the submitted appeal.

successboolean required

Indicates whether the request was successful.

Example response

{
  "success": true
}