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

# Delete email reassign resource

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

This endpoint allows users to delete brand resource email-invite-reassign.

## 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

### 400

Incorrect or missing token

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

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

### 403

* Request with a valid bearer token from another user logged in.
* The user is authorized with a token from an app they don’t own.

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

```json
{
  "code": 25002030,
  "message": "No access to the brand."
}
```

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

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

### 404

* Brand with this `brand_id` doesn't exist
* Resource doesn't exist

**Example** (`Brand doesn't exist`)

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

**Example** (`Resource doesn't exist`)

```json
{
  "code": 25002036,
  "message": "Brand resource not found. Resource name: email-invite-reassign."
}
```

## 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-invite-reassign" \
  -H "Authorization: Bearer $SIGNNOW_ACCESS_TOKEN"
```

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