---
title: "Delete freeform signed CC email branding"
url: "https://docs.signnow.com/docs/cc-email-branding/operations/delete-v2-brands-brand_id-resources-email-cc-invite-signed"
type: "endpoint"
section: "cc-email-branding"
slug: "cc-email-branding/operations/delete-v2-brands-brand_id-resources-email-cc-invite-signed"
method: "DELETE"
path: "/v2/brands/{brand_id}/resources/email-cc-invite-signed"
operation_id: "delete-v2-brands-brand_id-resources-email-cc-invite-signed"
authorization: "bearer"
---

# Delete freeform signed CC email branding

`DELETE /v2/brands/{brand_id}/resources/email-cc-invite-signed`

This endpoint allows users to remove branding for CC emails that are sent when a freeform invite is signed. If an invite has multiple signers, the CC email is sent every time a document or document group is signed. 

## Authorization

bearer

## Path Parameters

| Name | Type | Required | Description |
|------|------|----------|-------------|
| `brand_id` | string | Yes | ID of the brand. Must match the pattern: [a-z0-9]{40}. |

## Responses

### 204

Success, no content

### 404

Brand with this `brand_id` doesn't exist

**Example** (`Example 1`)

```json
{
  "code": 25002016,
  "message": "Brand not found."
}
```

## Code Examples

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

### cURL

```bash
curl -X DELETE \
  "https://api.signnow.com/v2/brands/{brand_id}/resources/email-cc-invite-signed" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

---
*Full reference: https://docs.signnow.com/docs/cc-email-branding/operations/delete-v2-brands-brand_id-resources-email-cc-invite-signed*
