***

title: Embedded Saved Signatures
---------------------

For clean Markdown of any page, append .md to the page URL. For a complete documentation index, see https://developers.hellosign.com/docs/guides/llms.txt. For full documentation content, see https://developers.hellosign.com/docs/guides/llms-full.txt.

Dropbox Sign allows you to create and save signatures for easy use when signing documents. When using our UI or non-embedded API workflows, after a signer creates a signature once (drawing, typing, or uploading an image) it is saved to their account. The user can then reuse it again in future signature requests. We also provide this saved signatures feature for our embedded workflows, but it works slightly differently. This documentation will walk you through how to implement saved signatures when using embedded workflows.

## Saved Signatures in Embedded vs. Non-Embedded Workflows

The Saved Signatures feature functions differently depending on whether the signature request is **embedded** or **non-embedded**. The way these saved signatures are stored and retrieved depends on the request type:

* **Non-Embedded Requests:** Saved signatures are associated with the signer's individual account. Once a signature is saved, it can be reused for any future non-embedded requests tied to that account.
* **Embedded Requests:** Saved signatures are specific to the API app that generated the request. When a signer completes a signature request from a specific API app for the first time, the signature must be drawn, typed, or uploaded. It will be saved upon completion of the signature request. This saved signature will then be available for reuse in future embedded requests generated by the same API app.

This behavior allows for a consistent and app-specific signature experience in embedded workflows, while maintaining account-level signature reuse for non-embedded workflows.

<Warning icon="fa-light fa-circle-exclamation">
  **Warning:** Non-embedded saved signatures on your account will not show any of the signatures saved in embedded request signing. Embedded request’s saved signatures are specific to the API app used to generate the request.
</Warning>

## Supported Embedded Endpoints:

* [v3/signature\_request/create\_embedded](/api/signature-request/create-embedded)
* [v3/signature\_request/create\_embedded\_with\_template](/api/signature-request/create-embedded-with-template)
* [v3/signature\_request/bulk\_create\_embedded\_with\_template](/api/signature-request/bulk-create-embedded-with-template)

## Enable Saved Signatures For Embedded Workflows

<Note icon="fa-light fa-triangle-exclamation">
  **Note:** The Embedded Saved Signature option can only be added to your API apps through the API Settings in your account user interface. This feature **cannot currently be updated via an API endpoint**.
</Note>

| Steps                                                                                                                                                                                | Image                                                                                       |
| ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------- |
| 1. Login to your Dropbox Sign account and select the "**API**" tab from the left navigation.                                                                                         | ![Sign account API tab](https://files.buildwithfern.com/https://dropbox123432.docs.buildwithfern.com/207a2164694fb0f4c2cdbdb28a614a2ea4d5c1499023360cab100ad176a5a5a1/docs/assets/sign-account-api-tab-52cb2be2d708d79bea8f3c0097f5f170.png)                          |
| 2. Scroll to the "**API apps**" section and click the edit icon next to the API app where you want to enable saved signatures.                                                       | ![API app edit button](https://files.buildwithfern.com/https://dropbox123432.docs.buildwithfern.com/ca4211986ab04eced011b59e3ba722cd5d908e865f444b9784fdd734d13cd931/docs/assets/api-app-edit-icon-e7d838db4080cead1607076c05711447.png)                           |
| 3. On the "**Edit API app details**" page, select the checkbox under the "**Options**" section that states "**Enable showing saved signatures in embedded signing.**"                | ![Edit API app details page](https://files.buildwithfern.com/https://dropbox123432.docs.buildwithfern.com/fd422770490baeb2987a72da7af844bf629b7ac6f87dde0b71b0a544af51e512/docs/assets/edit-api-app-details-b1d303cb37b4e8e516c4931f0890a0ca.png)                     |
| 4. Select the "**Update Application**" button.                                                                                                                                       | ![Setting enabled and update application button](https://files.buildwithfern.com/https://dropbox123432.docs.buildwithfern.com/54d71a3d7aa8b395ab57765b0175eb0163ac6a8b69c7e58c358773a3b17f5b22/docs/assets/update-api-app-button-f5b4fa9a12e42207973deb50d9f17897.png) |
| 5. Confirm this option is enabled by selecting the API app's "**Details**" button and view "**Enabled**" under the "**Enable showing saved signatures in embedded signing.**" field. | ![Setting enabled review screen](https://files.buildwithfern.com/https://dropbox123432.docs.buildwithfern.com/ea4c72e0e40fddb9cf8523399145f7470f911ed27a6a6e01b9504ea062f81e88/docs/assets/api-app-setting-enabled-86fe3a8c0321203f5b95284583071270.png)                 |

## FAQ

<AccordionGroup>
  <Accordion title="What is the difference between Embedded vs. Non-embedded workflows?">
    Please see: [The difference between Embedded and Non-embedded](https://faq.hellosign.com/hc/en-us/articles/216839377-The-difference-between-Embedded-and-Non-Embedded).
  </Accordion>

  <Accordion title="How can I set up non-embedded saved signatures on my account?">
    Please see: [How to create and save signatures](https://help.dropbox.com/create-upload/how-to-create-and-save-signatures).
  </Accordion>

  <Accordion title="Can I update my API app to enable this feature through an API endpoint?">
    No, currently we only support enabling this option through the API Settings page of your account.
  </Accordion>

  <Accordion title="Can I update this for a published API app?">
    Yes, it will remain published after being updated.
  </Accordion>

  <Accordion title="If I transfer my API app to another account, will the saved signatures remain for my signers?">
    Yes, any API apps transferred to another team member when leaving a team will also transfer the saved signatures associated with that API app.
  </Accordion>

  <Accordion title="Can I transfer saved signatures from one API app to another?">
    No, you'll need to generate new saved signatures for each separate API app.
  </Accordion>

  <Accordion title="Is there a limit to the number of Saved Signatures an API app can have?">
    Users on Free API plans are limited to 5 saved signatures.
  </Accordion>

  <Accordion title="Can an Admin enable or disable this for other team members accounts?">
    No, not currently. Only API app owners can update this through their own API settings.
  </Accordion>
</AccordionGroup>