# Update 10DLC Brand

## POST Request

{% hint style="info" %}
<https://v1.api19.com/campaigns/brand/update>
{% endhint %}

Update an existing 10DLC brand

{% tabs %}
{% tab title="Curl Post" %}
{% code title="curl" %}

```bash
curl https://v1.api19.com/campaigns/brand/update \
 -d 'key=api_token' \
 -d 'brand_id=B1A2C3D4E5' \
 -d 'companyName=Updated Company Name' \
 -d 'website=https://newsite.com' \
 -d 'email=newemail@example.com'
```

{% endcode %}
{% endtab %}

{% tab title="JSON Response" %}
{% code title="response.json" %}

```json
{
	"status": "ok",
	"data": "Brand updated successfully"
}
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Parameters

* `brand_id` (required) - Brand ID
* `companyName` (optional) - Company name
* `ein` (optional) - Employer Identification Number
* `entityType` (optional) - Entity type
* `firstname` (optional) - First name of contact
* `lastname` (optional) - Last name of contact
* `dba` (optional) - Doing Business As name
* `website` (optional) - Company website
* `address1` (optional) - Primary address
* `address2` (optional) - Secondary address
* `city` (optional) - City
* `state` (optional) - State
* `zip` (optional) - Postal code
* `country` (optional) - Country code
* `email` (optional) - Contact email
* `phone` (optional) - Contact phone number
* `vertical` (optional) - Business vertical/industry
* `stockSymbol` (optional) - Stock symbol
* `stockExchange` (optional) - Stock exchange
* `altBusinessId` (optional) - Alternative business ID
* `altBusinessIdType` (optional) - Alternative business ID type


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.api19.com/campaigns/update-10dlc-brand.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
