---
title: "Logo resource"
url: "https://docs.signnow.com/docs/branding-logo-resource"
type: "page"
section: "Documentation"
slug: "branding-logo-resource"
---

# Logo resource

# Logo resource

With the logo branding resource, API users can customize the logo for the signing session, the view mode after signing the document, embedded sending, and embedded view experiences.

## Add a custom logo

There are two ways to add a custom logo:

* By [uploading](/docs/general-branding/operations/post-v2-brands-brand_id-logo) an image from your computer.

```bash
curl --request POST \
  --url https://api.signnow.com/v2/brands/{{brand_id}}/resources/logo \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {{access_token}}' \
  --header 'Content-Type: multipart/form-data' \
  --form 'logo=@"/path/to/file"'
```

* By [uploading](/docs/general-branding/operations/put-v2-brands-brand_id-resources-logo) an image from a URL.

```bash
curl --request PUT \
  --url https://api.signnow.com/v2/brands/{{brand_id}}/resources/logo \
  --header 'Accept: application/json' \
  --header 'Authorization: Bearer {{access_token}}' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "https://logo-file.com"
}'
```

Once the logo is added, you can replace the default logo and customize the signer and sender experience.

### Customize the logo for the signing session and the completion page

![logo on signing session.png](/reference-assets/images/Branding%20guide/Logo/logo%20on%20signing%20session.png)

![logo on completion page.png](/reference-assets/images/Branding%20guide/Logo/logo%20on%20completion%20page.png)


### Customize the logo for the embedded sending mode

Add a custom logo for the sender on the following pages:

* Send Invite page for a document or document group

![embedded_sending_doc_invite_page.png](/reference-assets/images/Branding%20guide/Logo/embedded_sending_doc_invite_page.png)

* Add documents to Document Group page

![embedded_sending_dg_add_documents.png](/reference-assets/images/Branding%20guide/Logo/embedded_sending_dg_add_documents.png)

* Document Group page after the document group invite has been sent

![general_dg_page_embedded_logo.png](/reference-assets/images/Branding%20guide/Logo/general_dg_page_embedded_logo.png)

* View mode on the editor page after the document or document group invite has been sent 

![embedded_sending_dg_view_mode.png](/reference-assets/images/Branding%20guide/Logo/embedded_sending_dg_view_mode.png)

> For a document, the view mode is available only if the `document` type is selected when creating the [embedded sending link](/docs/embedded-sending/operations/post-v2-documents-document_id-embedded-sending).

The logo on emails can be customized using the [email logo resource](/docs/general-email-branding/operations/post-v2-brands-brand_id-email-logo).


---
*Full page: https://docs.signnow.com/docs/branding-logo-resource*
