# `DocuSign.Api.GroupBrands`
[🔗](https://github.com/neilberkman/docusign_elixir/blob/v3.4.0/lib/docusign/api/group_brands.ex#L5)

API calls for all endpoints tagged `GroupBrands`.

# `brands_delete_group_brands`

```elixir
@spec brands_delete_group_brands(
  DocuSign.Connection.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, DocuSign.Model.GroupBrands.t()} | {:error, Req.Response.t()}
```

Deletes brand information from a group.
This method deletes one or more brands from a group.

### Parameters

- `connection` (DocuSign.Connection): Connection to server
- `account_id` (String.t): The external account number (int) or account ID GUID.
- `group_id` (String.t): The ID of the group.
- `opts` (keyword): Optional parameters
  - `:body` (BrandsRequest): 

### Returns

- `{:ok, DocuSign.Model.GroupBrands.t}` on success
- `{:error, Req.Response.t}` on failure

# `brands_get_group_brands`

```elixir
@spec brands_get_group_brands(
  DocuSign.Connection.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, DocuSign.Model.GroupBrands.t()} | {:error, Req.Response.t()}
```

Gets the brand information for a group.
This method returns information about the brands associated with a group.

### Parameters

- `connection` (DocuSign.Connection): Connection to server
- `account_id` (String.t): The external account number (int) or account ID GUID.
- `group_id` (String.t): The ID of the group.
- `opts` (keyword): Optional parameters

### Returns

- `{:ok, DocuSign.Model.GroupBrands.t}` on success
- `{:error, Req.Response.t}` on failure

# `brands_put_group_brands`

```elixir
@spec brands_put_group_brands(
  DocuSign.Connection.t(),
  String.t(),
  String.t(),
  keyword()
) ::
  {:ok, DocuSign.Model.GroupBrands.t()} | {:error, Req.Response.t()}
```

Adds an existing brand to a group.
This method adds one or more existing brands to a group based on the `groupId`.

### Parameters

- `connection` (DocuSign.Connection): Connection to server
- `account_id` (String.t): The external account number (int) or account ID GUID.
- `group_id` (String.t): The ID of the group being accessed.
- `opts` (keyword): Optional parameters
  - `:body` (BrandsRequest): 

### Returns

- `{:ok, DocuSign.Model.GroupBrands.t}` on success
- `{:error, Req.Response.t}` on failure

---

*Consult [api-reference.md](api-reference.md) for complete listing*
