> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.itspropel.com/llms.txt.
> For full documentation content, see https://docs.itspropel.com/llms-full.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.itspropel.com/_mcp/server.

# Register DLC Brand + Campaign

POST https://communications/masking/dlc/register
Content-Type: multipart/form-data

Kicks off 10DLC brand + campaign registration via DlcOnboardingService. Both `brand` and `campaign` payloads are individually optional — send whichever you want to register. Permission: UPDATE_SETTINGS. 202 on queue.

Reference: https://docs.itspropel.com/propel-biz/29-communications/masking/dlc-10-dlc-compliance/register-dlc-brand-campaign

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: PropelBiz
  version: 1.0.0
paths:
  /communications/masking/dlc/register:
    post:
      operationId: register-dlc-brand-campaign
      summary: Register DLC Brand + Campaign
      description: >-
        Kicks off 10DLC brand + campaign registration via DlcOnboardingService.
        Both `brand` and `campaign` payloads are individually optional — send
        whichever you want to register. Permission: UPDATE_SETTINGS. 202 on
        queue.
      tags:
        - >-
          subpackage_29Communications.subpackage_29Communications/masking.subpackage_29Communications/masking/dlc10DlcCompliance
      parameters:
        - name: '{{tenant_key_name}}'
          in: header
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/29 Communications_Masking_DLC (10DLC
                  Compliance)_Register DLC Brand + Campaign_Response_200
      requestBody:
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                brand[ein]:
                  type: string
                  description: 'Optional (with brand): US EIN/Tax ID'
                brand[address]:
                  type: string
                  description: 'Optional (with brand): Business address - max 512'
                brand[website]:
                  type: string
                  description: 'Optional (with brand): Company website URL'
                brand[vertical]:
                  type: string
                  description: 'Optional (with brand): Industry vertical - max 64'
                brand[legal_name]:
                  type: string
                  description: 'Optional (with brand): Registered legal name - max 255'
                campaign[use_case]:
                  type: string
                  description: 'Optional (with campaign): T-Mobile CNP use case code'
                brand[contact_email]:
                  type: string
                  description: 'Optional (with brand): Primary compliance contact'
                brand[contact_phone]:
                  type: string
                  description: 'Optional (with brand): Primary compliance phone (E.164)'
                campaign[description]:
                  type: string
                  description: 'Optional (with campaign): Campaign description - max 1024'
                campaign[opt_in_keywords][]:
                  type: string
                  description: 'Optional (with campaign): Opt-in keywords - repeat'
                campaign[sample_messages][]:
                  type: string
                  description: >-
                    Optional (with campaign): Sample message - 1..5 messages -
                    max 1600 chars each
              required:
                - brand[ein]
                - brand[address]
                - brand[website]
                - brand[vertical]
                - brand[legal_name]
                - campaign[use_case]
                - brand[contact_email]
                - brand[contact_phone]
                - campaign[description]
                - campaign[opt_in_keywords][]
                - campaign[sample_messages][]
servers:
  - url: https:/
components:
  schemas:
    29 Communications_Masking_DLC (10DLC Compliance)_Register DLC Brand + Campaign_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: >-
        29 Communications_Masking_DLC (10DLC Compliance)_Register DLC Brand +
        Campaign_Response_200

```

## SDK Code Examples

```python
import requests

url = "https://https/communications/masking/dlc/register"

payload = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[ein]\"\r\n\r\n12-3456789\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[address]\"\r\n\r\n1234 Market St, Suite 500, San Francisco, CA 94103\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[website]\"\r\n\r\nhttps://www.examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[vertical]\"\r\n\r\nRetail\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[legal_name]\"\r\n\r\nExample Corporation LLC\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[use_case]\"\r\n\r\nMKTG\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_email]\"\r\n\r\ncompliance@examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_phone]\"\r\n\r\n+14155552671\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[description]\"\r\n\r\nPromotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[opt_in_keywords][]\"\r\n\r\nJOIN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[sample_messages][]\"\r\n\r\nWelcome to ExampleCorp! Reply STOP to unsubscribe.\r\n-----011000010111000001101001--\r\n"
headers = {
    "{{tenant_key_name}}": "{{tenant_key_value1}}|{{tenant_key_value2}}",
    "Content-Type": "multipart/form-data; boundary=---011000010111000001101001"
}

response = requests.post(url, data=payload, headers=headers)

print(response.json())
```

```javascript
const url = 'https://https/communications/masking/dlc/register';
const form = new FormData();
form.append('brand[ein]', '12-3456789');
form.append('brand[address]', '1234 Market St, Suite 500, San Francisco, CA 94103');
form.append('brand[website]', 'https://www.examplecorp.com');
form.append('brand[vertical]', 'Retail');
form.append('brand[legal_name]', 'Example Corporation LLC');
form.append('campaign[use_case]', 'MKTG');
form.append('brand[contact_email]', 'compliance@examplecorp.com');
form.append('brand[contact_phone]', '+14155552671');
form.append('campaign[description]', 'Promotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.');
form.append('campaign[opt_in_keywords][]', 'JOIN');
form.append('campaign[sample_messages][]', 'Welcome to ExampleCorp! Reply STOP to unsubscribe.');

const options = {
  method: 'POST',
  headers: {'{{tenant_key_name}}': '{{tenant_key_value1}}|{{tenant_key_value2}}'}
};

options.body = form;

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://https/communications/masking/dlc/register"

	payload := strings.NewReader("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[ein]\"\r\n\r\n12-3456789\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[address]\"\r\n\r\n1234 Market St, Suite 500, San Francisco, CA 94103\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[website]\"\r\n\r\nhttps://www.examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[vertical]\"\r\n\r\nRetail\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[legal_name]\"\r\n\r\nExample Corporation LLC\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[use_case]\"\r\n\r\nMKTG\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_email]\"\r\n\r\ncompliance@examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_phone]\"\r\n\r\n+14155552671\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[description]\"\r\n\r\nPromotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[opt_in_keywords][]\"\r\n\r\nJOIN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[sample_messages][]\"\r\n\r\nWelcome to ExampleCorp! Reply STOP to unsubscribe.\r\n-----011000010111000001101001--\r\n")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://https/communications/masking/dlc/register")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["{{tenant_key_name}}"] = '{{tenant_key_value1}}|{{tenant_key_value2}}'
request.body = "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[ein]\"\r\n\r\n12-3456789\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[address]\"\r\n\r\n1234 Market St, Suite 500, San Francisco, CA 94103\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[website]\"\r\n\r\nhttps://www.examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[vertical]\"\r\n\r\nRetail\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[legal_name]\"\r\n\r\nExample Corporation LLC\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[use_case]\"\r\n\r\nMKTG\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_email]\"\r\n\r\ncompliance@examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_phone]\"\r\n\r\n+14155552671\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[description]\"\r\n\r\nPromotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[opt_in_keywords][]\"\r\n\r\nJOIN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[sample_messages][]\"\r\n\r\nWelcome to ExampleCorp! Reply STOP to unsubscribe.\r\n-----011000010111000001101001--\r\n"

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.post("https://https/communications/masking/dlc/register")
  .header("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}")
  .body("-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[ein]\"\r\n\r\n12-3456789\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[address]\"\r\n\r\n1234 Market St, Suite 500, San Francisco, CA 94103\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[website]\"\r\n\r\nhttps://www.examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[vertical]\"\r\n\r\nRetail\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[legal_name]\"\r\n\r\nExample Corporation LLC\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[use_case]\"\r\n\r\nMKTG\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_email]\"\r\n\r\ncompliance@examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_phone]\"\r\n\r\n+14155552671\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[description]\"\r\n\r\nPromotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[opt_in_keywords][]\"\r\n\r\nJOIN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[sample_messages][]\"\r\n\r\nWelcome to ExampleCorp! Reply STOP to unsubscribe.\r\n-----011000010111000001101001--\r\n")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('POST', 'https://https/communications/masking/dlc/register', [
  'multipart' => [
    [
        'name' => 'brand[ein]',
        'contents' => '12-3456789'
    ],
    [
        'name' => 'brand[address]',
        'contents' => '1234 Market St, Suite 500, San Francisco, CA 94103'
    ],
    [
        'name' => 'brand[website]',
        'contents' => 'https://www.examplecorp.com'
    ],
    [
        'name' => 'brand[vertical]',
        'contents' => 'Retail'
    ],
    [
        'name' => 'brand[legal_name]',
        'contents' => 'Example Corporation LLC'
    ],
    [
        'name' => 'campaign[use_case]',
        'contents' => 'MKTG'
    ],
    [
        'name' => 'brand[contact_email]',
        'contents' => 'compliance@examplecorp.com'
    ],
    [
        'name' => 'brand[contact_phone]',
        'contents' => '+14155552671'
    ],
    [
        'name' => 'campaign[description]',
        'contents' => 'Promotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.'
    ],
    [
        'name' => 'campaign[opt_in_keywords][]',
        'contents' => 'JOIN'
    ],
    [
        'name' => 'campaign[sample_messages][]',
        'contents' => 'Welcome to ExampleCorp! Reply STOP to unsubscribe.'
    ]
  ]
  'headers' => [
    '{{tenant_key_name}}' => '{{tenant_key_value1}}|{{tenant_key_value2}}',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://https/communications/masking/dlc/register");
var request = new RestRequest(Method.POST);
request.AddHeader("{{tenant_key_name}}", "{{tenant_key_value1}}|{{tenant_key_value2}}");
request.AddParameter("undefined", "-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[ein]\"\r\n\r\n12-3456789\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[address]\"\r\n\r\n1234 Market St, Suite 500, San Francisco, CA 94103\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[website]\"\r\n\r\nhttps://www.examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[vertical]\"\r\n\r\nRetail\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[legal_name]\"\r\n\r\nExample Corporation LLC\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[use_case]\"\r\n\r\nMKTG\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_email]\"\r\n\r\ncompliance@examplecorp.com\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"brand[contact_phone]\"\r\n\r\n+14155552671\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[description]\"\r\n\r\nPromotional campaign for the upcoming summer sale offering exclusive discounts to subscribers.\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[opt_in_keywords][]\"\r\n\r\nJOIN\r\n-----011000010111000001101001\r\nContent-Disposition: form-data; name=\"campaign[sample_messages][]\"\r\n\r\nWelcome to ExampleCorp! Reply STOP to unsubscribe.\r\n-----011000010111000001101001--\r\n", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["{{tenant_key_name}}": "{{tenant_key_value1}}|{{tenant_key_value2}}"]
let parameters = [
  [
    "name": "brand[ein]",
    "value": "12-3456789"
  ],
  [
    "name": "brand[address]",
    "value": "1234 Market St, Suite 500, San Francisco, CA 94103"
  ],
  [
    "name": "brand[website]",
    "value": "https://www.examplecorp.com"
  ],
  [
    "name": "brand[vertical]",
    "value": "Retail"
  ],
  [
    "name": "brand[legal_name]",
    "value": "Example Corporation LLC"
  ],
  [
    "name": "campaign[use_case]",
    "value": "MKTG"
  ],
  [
    "name": "brand[contact_email]",
    "value": "compliance@examplecorp.com"
  ],
  [
    "name": "brand[contact_phone]",
    "value": "+14155552671"
  ],
  [
    "name": "campaign[description]",
    "value": "Promotional campaign for the upcoming summer sale offering exclusive discounts to subscribers."
  ],
  [
    "name": "campaign[opt_in_keywords][]",
    "value": "JOIN"
  ],
  [
    "name": "campaign[sample_messages][]",
    "value": "Welcome to ExampleCorp! Reply STOP to unsubscribe."
  ]
]

let boundary = "---011000010111000001101001"

var body = ""
var error: NSError? = nil
for param in parameters {
  let paramName = param["name"]!
  body += "--\(boundary)\r\n"
  body += "Content-Disposition:form-data; name=\"\(paramName)\""
  if let filename = param["fileName"] {
    let contentType = param["content-type"]!
    let fileContent = String(contentsOfFile: filename, encoding: String.Encoding.utf8)
    if (error != nil) {
      print(error as Any)
    }
    body += "; filename=\"\(filename)\"\r\n"
    body += "Content-Type: \(contentType)\r\n\r\n"
    body += fileContent
  } else if let paramValue = param["value"] {
    body += "\r\n\r\n\(paramValue)"
  }
}

let request = NSMutableURLRequest(url: NSURL(string: "https://https/communications/masking/dlc/register")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "POST"
request.allHTTPHeaderFields = headers
request.httpBody = postData as Data

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```