Register a 10DLC brand with The Campaign Registry
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entity_type": "PRIVATE_PROFIT",
"display_name": "Acme Rewards",
"company_name": "Acme Corporation Inc.",
"ein": "12-3456789",
"phone": "+14155550100",
"street": "500 Market St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"email": "compliance@acme.example",
"website": "https://acme.example",
"vertical": "RETAIL"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand"
payload = {
"entity_type": "PRIVATE_PROFIT",
"display_name": "Acme Rewards",
"company_name": "Acme Corporation Inc.",
"ein": "12-3456789",
"phone": "+14155550100",
"street": "500 Market St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"email": "compliance@acme.example",
"website": "https://acme.example",
"vertical": "RETAIL"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
entity_type: 'PRIVATE_PROFIT',
display_name: 'Acme Rewards',
company_name: 'Acme Corporation Inc.',
ein: '12-3456789',
phone: '+14155550100',
street: '500 Market St',
city: 'San Francisco',
state: 'CA',
postal_code: '94105',
country: 'US',
email: 'compliance@acme.example',
website: 'https://acme.example',
vertical: 'RETAIL'
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'entity_type' => 'PRIVATE_PROFIT',
'display_name' => 'Acme Rewards',
'company_name' => 'Acme Corporation Inc.',
'ein' => '12-3456789',
'phone' => '+14155550100',
'street' => '500 Market St',
'city' => 'San Francisco',
'state' => 'CA',
'postal_code' => '94105',
'country' => 'US',
'email' => 'compliance@acme.example',
'website' => 'https://acme.example',
'vertical' => 'RETAIL'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand"
payload := strings.NewReader("{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"brandId": "BXYZ123",
"status": "PENDING"
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Compliance
Register a 10DLC brand with The Campaign Registry
Registers a US A2P 10DLC brand with The Campaign Registry via the active registrar. Submit the legal entity identity — entity type, legal and display name, tax id, registered address, and support email — and the brand is created and queued for vetting. The returned brandId is persisted against your organization and is required before you can register a campaign. Owner/admin only.
POST
/
api
/
v1
/
compliance
/
10dlc
/
brand
Register a 10DLC brand with The Campaign Registry
curl --request POST \
--url https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"entity_type": "PRIVATE_PROFIT",
"display_name": "Acme Rewards",
"company_name": "Acme Corporation Inc.",
"ein": "12-3456789",
"phone": "+14155550100",
"street": "500 Market St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"email": "compliance@acme.example",
"website": "https://acme.example",
"vertical": "RETAIL"
}
'import requests
url = "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand"
payload = {
"entity_type": "PRIVATE_PROFIT",
"display_name": "Acme Rewards",
"company_name": "Acme Corporation Inc.",
"ein": "12-3456789",
"phone": "+14155550100",
"street": "500 Market St",
"city": "San Francisco",
"state": "CA",
"postal_code": "94105",
"country": "US",
"email": "compliance@acme.example",
"website": "https://acme.example",
"vertical": "RETAIL"
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
entity_type: 'PRIVATE_PROFIT',
display_name: 'Acme Rewards',
company_name: 'Acme Corporation Inc.',
ein: '12-3456789',
phone: '+14155550100',
street: '500 Market St',
city: 'San Francisco',
state: 'CA',
postal_code: '94105',
country: 'US',
email: 'compliance@acme.example',
website: 'https://acme.example',
vertical: 'RETAIL'
})
};
fetch('https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'entity_type' => 'PRIVATE_PROFIT',
'display_name' => 'Acme Rewards',
'company_name' => 'Acme Corporation Inc.',
'ein' => '12-3456789',
'phone' => '+14155550100',
'street' => '500 Market St',
'city' => 'San Francisco',
'state' => 'CA',
'postal_code' => '94105',
'country' => 'US',
'email' => 'compliance@acme.example',
'website' => 'https://acme.example',
'vertical' => 'RETAIL'
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand"
payload := strings.NewReader("{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.orbit.devotel.io/api/v1/compliance/10dlc/brand")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"entity_type\": \"PRIVATE_PROFIT\",\n \"display_name\": \"Acme Rewards\",\n \"company_name\": \"Acme Corporation Inc.\",\n \"ein\": \"12-3456789\",\n \"phone\": \"+14155550100\",\n \"street\": \"500 Market St\",\n \"city\": \"San Francisco\",\n \"state\": \"CA\",\n \"postal_code\": \"94105\",\n \"country\": \"US\",\n \"email\": \"compliance@acme.example\",\n \"website\": \"https://acme.example\",\n \"vertical\": \"RETAIL\"\n}"
response = http.request(request)
puts response.read_body{
"data": {
"brandId": "BXYZ123",
"status": "PENDING"
},
"meta": {
"request_id": "req_9s8d7f6g5h4j",
"timestamp": "2026-08-03T12:34:56.000Z"
}
}Authorizations
BearerApiKey
Dashboard JWT token from Clerk
Body
application/json
Available options:
PRIVATE_PROFIT, PUBLIC_PROFIT, NON_PROFIT, GOVERNMENT, SOLE_PROPRIETOR Public-facing brand name shown to recipients.
Registered legal company name.
Tax/registration id (US EIN xx-xxxxxxx or foreign equivalent).
⌘I