Skip to main content
POST
/
10dlc
/
brands
/
{brand_id}
/
appeals
Appeal a 10DLC Brand Identity verification
curl --request POST \
  --url https://api.wavix.com/v3/10dlc/brands/{brand_id}/appeals \
  --header 'Content-Type: application/json' \
  --data '{
  "brand_id": "BM20QP9",
  "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."
}'
{
  "success": true
}

Authorizations

appid
string
query
required

An API key to authorize your request

Path Parameters

brand_id
string
required

Unique identifier of the Brand

Example:

"BM20QP9"

Body

application/json

The appeal request

brand_id
string
required

Unique identifier of the Brand

Example:

"BM20QP9"

appeal_categories
string[]
required

The list of appeal categories. The allowed appeal categories are: VERIFY_TAX_ID, VERIFY_NON_PROFIT, and VERIFY_GOVERNMENT

Example:
["VERIFY_TAX_ID"]
evidence
string[]
required

An array of evidence UUIDs to be associated with the appeal

Example:
["855dff49-c097-4645-3983-08dcb9856232"]
explanation
string

The appeal comment or justification

Example:

"Find the company incorporation docs attached and please review the Brand Identity status."

Response

success
boolean
required

Indicates a successful request

Example:

true

I