# 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
