---
title: "Get email logo brand resource"
url: "https://docs.signnow.com/docs/general-email-branding/operations/get-v2-brands-brand_id-email-logo"
type: "endpoint"
section: "general-email-branding"
slug: "general-email-branding/operations/get-v2-brands-brand_id-email-logo"
method: "GET"
path: "/v2/brands/{brand_id}/resources/email-logo"
operation_id: "get-v2-brands-brand_id-email-logo"
authorization: "bearer"
---

# Get email logo brand resource

`GET /v2/brands/{brand_id}/resources/email-logo`

This endpoint allows users to retrieve the picture file for email logo resource.

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

### 200

Success

**Example** (`Success: picture file with email logo`)

```json
{}
```

### 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-logo."
}
```

## Code Examples

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

### cURL

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

---
*Full reference: https://docs.signnow.com/docs/general-email-branding/operations/get-v2-brands-brand_id-email-logo*
