---
title: "Unassign brand from document"
url: "https://docs.signnow.com/docs/general-branding/operations/delete-v2-documents-document_id-brand"
type: "endpoint"
section: "general-branding"
slug: "general-branding/operations/delete-v2-documents-document_id-brand"
method: "DELETE"
path: "/v2/documents/{document_id}/brand"
operation_id: "delete-v2-documents-document_id-brand"
authorization: "bearer"
---

# Unassign brand from document

`DELETE /v2/documents/{document_id}/brand`

This endpoint allows users to delete branding assignment from a document.

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `document_id` | string | Yes | ID of the document. |

## Responses

### 204

Success, no content

### 400

* Incorrect or missing token


**Example** (`Incorrect or missing token`)

```json
{
  "code": 1537,
  "error": "invalid_token"
}
```

### 403

* The bearer token is valid but it belongs to another user.
* The user is authorized with a token from an app they don’t own.


**Example** (`Another user's token`)

```json
{
  "code": 25002075,
  "message": "Brand assign to provided application is not allowed."
}
```

**Example** (`User doesn't own the app`)

```json
{
  "code": 25002001,
  "message": "Brand action not allowed."
}
```

### 404

`document_id` doesn't exist

**Example** (`Example 1`)

```json
{
  "code": 25002062,
  "message": "Document unique identifier does not exist."
}
```

### 422

`document_id` has been deleted

**Example** (`Deleted document_id`)

```json
{
  "code": 25002065,
  "message": "Document deleted."
}
```

## Code Examples

> Replace `$SIGNNOW_ACCESS_TOKEN` and any `{placeholder}` values before running.

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/v2/documents/{document_id}/brand" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/general-branding/operations/delete-v2-documents-document_id-brand*
