---
title: "Get organization brands"
url: "https://docs.signnow.com/docs/organization-branding/operations/get-v2-organizations-organization_id-brands"
type: "endpoint"
section: "organization-branding"
slug: "organization-branding/operations/get-v2-organizations-organization_id-brands"
method: "GET"
path: "/v2/organizations/{organization_id}/brands"
operation_id: "get-v2-organizations-organization_id-brands"
authorization: "bearer"
---

# Get organization brands

`GET /v2/organizations/{organization_id}/brands`

This endpoint allows API users to retrieve all brands associated with an organization.

**Notes**

Each brand has an `owner_type` field that defines who owns it and what access is allowed. There are two ownership types returned by this endpoint:

* **`common`** — system default SignNow brand. Read-only; cannot be edited or customized. Appears in the brand list, but any modification attempt returns a "No access to brand" error.
* **`organization`** — custom brand owned by the organization. Full access for organization admins. This is the brand type you should create and use for customization.

## Authorization

bearer

## Path Parameters

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

## Responses

### 200

Success

**Example** (`Example 1`)

```json
{
  "data": [
    {
      "link": "https://api.signnow.com/v2/brands/f403197bda9365ba4b30f8bc6046e4be6a4c3611",
      "title": "signNow",
      "resources": [],
      "unique_id": "f403197bda9365ba4b30f8bc6046e4be6a4c3611",
      "owner_type": "common"
    },
    {
      "link": "https://api.signnow.com/v2/organizations/1e9cdccb8e764fbe86a664cc9e24502d3db7b297/brands/dbfbe9c51014492ea7e8f98a56b35254896a4ed3",
      "title": "New Theme",
      "resources": {
        "email": {
          "data": null,
          "link": "https://api.signnow.com/v2/organizations/1e9cdccb8e764fbe86a664cc9e24502d3db7b297/brands/dbfbe9c51014492ea7e8f98a56b35254896a4ed3/resources/email"
        },
        "editor": {
          "data": null,
          "link": "https://api.signnow.com/v2/organizations/1e9cdccb8e764fbe86a664cc9e24502d3db7b297/brands/dbfbe9c51014492ea7e8f98a56b35254896a4ed3/resources/editor"
        },
        "general": {
          "data": null,
          "link": "https://api.signnow.com/v2/organizations/1e9cdccb8e764fbe86a664cc9e24502d3db7b297/brands/dbfbe9c51014492ea7e8f98a56b35254896a4ed3/resources/general"
        }
      },
      "unique_id": "dbfbe9c51014492ea7e8f98a56b35254896a4ed3",
      "owner_type": "organization"
    }
  ],
  "meta": {
    "pagination": {
      "count": 4,
      "links": [],
      "total": 4,
      "per_page": 15,
      "total_pages": 1,
      "current_page": 1
    }
  }
}
```

### 400

Incorrect or missing token

**Example** (`Example 1`)

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

### 403

* The user is authorized with a token from an app they don’t own.
* The user is not a member, moderator, or admin of the organization.

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

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

**Example** (`User not in organization`)

```json
{
  "code": 25006002,
  "message": "Insufficient organization rights."
}
```

### 404

The organization is not found.

**Example** (`Organization not found`)

```json
{
  "code": 25006001,
  "message": "Organization not found."
}
```

## Code Examples

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

### cURL

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

---
*Full reference: https://docs.signnow.com/docs/organization-branding/operations/get-v2-organizations-organization_id-brands*
