> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Docusign Sandbox

## Overview

<CardGroup cols={3}>
  <Card title="Pre-built tooling" icon="screwdriver-wrench" href="#pre-built-tooling" />

  <Card title="Pre-built integrations" icon="square-check" href="#pre-built-integrations" />

  <Card title="Access requirements" icon="triangle-exclamation" href="#access-requirements" />

  <Card title="Setup guide" icon="rocket" href="#setup-guide" />

  <Card title="Useful links" icon="circle-info" href="#useful-links" />

  <Card title="API gotchas" icon="biohazard" href="#api-gotchas" />
</CardGroup>

## Pre-built tooling

<AccordionGroup>
  <Accordion title="✅ Authorization">
    | Tools                           | Status |
    | ------------------------------- | ------ |
    | Pre-built authorization (OAuth) | ✅      |
    | Credentials auto-refresh        | ✅      |
    | Auth parameters validation      | ✅      |
    | Pre-built authorization UI      | ✅      |
    | Custom authorization UI         | ✅      |
    | Expired credentials detection   | ✅      |
  </Accordion>

  <Accordion title="✅ Read & write data">
    | Tools                                     | Status                         |
    | ----------------------------------------- | ------------------------------ |
    | Pre-built integrations                    | ✅                              |
    | API unification                           | ✅                              |
    | 2-way sync                                | ✅                              |
    | Webhooks from Nango on data modifications | ✅                              |
    | Real-time webhooks from 3rd-party API     | 🚫 (time to contribute: \<48h) |
    | Proxy requests                            | ✅                              |
  </Accordion>

  <Accordion title="✅ Observability & data quality">
    | Tools                   | Status |
    | ----------------------- | ------ |
    | HTTP request logging    | ✅      |
    | End-to-end type safety  | ✅      |
    | Data runtime validation | ✅      |
    | OpenTelemetry export    | ✅      |
    | Slack alerts on errors  | ✅      |
    | Integration status API  | ✅      |
  </Accordion>

  <Accordion title="✅ Customization">
    | Tools                              | Status                         |
    | ---------------------------------- | ------------------------------ |
    | Create or customize use-cases      | ✅                              |
    | Pre-configured pagination          | 🚫 (time to contribute: \<48h) |
    | Pre-configured rate-limit handling | 🚫 (time to contribute: \<48h) |
    | Per-customer configurations        | ✅                              |
  </Accordion>
</AccordionGroup>

### Others

| Function name                  | Description                                                                            | Type                                           | Source code                                                                                                                           |
| ------------------------------ | -------------------------------------------------------------------------------------- | ---------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------- |
| `create-connect-configuration` | Create a Connect webhook configuration to receive envelope event notifications.        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/create-connect-configuration.ts) |
| `create-recipient-tabs`        | Add signature, date, text, checkbox and other tabs to a recipient on a draft envelope. | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/create-recipient-tabs.ts)        |
| `create-recipient-view`        | Generate an embedded signing URL for a recipient                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/create-recipient-view.ts)        |
| `delete-connect-configuration` | Delete a Connect webhook configuration                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/delete-connect-configuration.ts) |
| `delete-envelope-recipients`   | Remove recipients from a draft envelope.                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/delete-envelope-recipients.ts)   |
| `delete-envelope`              | Move a draft envelope to the recycle bin (soft delete).                                | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/delete-envelope.ts)              |
| `delete-groups`                | Delete one or more custom groups                                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/delete-groups.ts)                |
| `get-account-settings`         | Retrieve all account-level settings and feature flags.                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-account-settings.ts)         |
| `get-brand`                    | Retrieve a specific brand by ID. Requires Branding feature (enterprise plans).         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-brand.ts)                    |
| `get-envelope-audit-events`    | Retrieve the audit trail for an envelope.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-envelope-audit-events.ts)    |
| `get-envelope`                 | Retrieve a single envelope's metadata.                                                 | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-envelope.ts)                 |
| `get-template`                 | Retrieve a template by ID including documents, recipients, and tabs.                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-template.ts)                 |
| `get-user`                     | Retrieve a user's detailed profile and settings.                                       | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/get-user.ts)                     |
| `list-brands`                  | List branding profiles for the account. Requires Branding feature (enterprise plans).  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-brands.ts)                  |
| `list-envelope-documents`      | List document metadata for an envelope (no binary download).                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-envelope-documents.ts)      |
| `list-envelope-recipients`     | List all recipients for an envelope.                                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-envelope-recipients.ts)     |
| `list-folder-envelopes`        | List envelopes contained in a specific folder.                                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-folder-envelopes.ts)        |
| `list-folders`                 | List all envelope folders for the authenticated user.                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-folders.ts)                 |
| `list-group-users`             | List users that belong to a specific group.                                            | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-group-users.ts)             |
| `list-groups`                  | List all account groups.                                                               | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-groups.ts)                  |
| `list-recipient-tabs`          | Retrieve all tabs for a specific recipient in an envelope.                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-recipient-tabs.ts)          |
| `list-signing-groups`          | List signing groups (shared signature groups) for the account.                         | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-signing-groups.ts)          |
| `list-template-recipients`     | List recipient roles defined in a template                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-template-recipients.ts)     |
| `list-templates`               | List account templates with optional search and pagination                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-templates.ts)               |
| `list-users`                   | List account users with optional filters.                                              | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/list-users.ts)                   |
| `remove-group-users`           | Remove users from a group.                                                             | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/remove-group-users.ts)           |
| `update-connect-configuration` | Update an existing Connect webhook configuration.                                      | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/update-connect-configuration.ts) |
| `update-group`                 | Update a group's name or permission profile.                                           | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/update-group.ts)                 |
| `update-recipient-tabs`        | Update tabs on a recipient in a draft envelope.                                        | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/update-recipient-tabs.ts)        |
| `update-user`                  | Update a user's profile or settings.                                                   | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/update-user.ts)                  |
| `void-envelope`                | Void a sent envelope that has not yet been completed.                                  | [Action](/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/actions/void-envelope.ts)                |
| `custom-fields`                | Sync account-level custom field definitions (text and list types).                     | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/custom-fields.ts)                  |
| `envelopes`                    | Sync envelope metadata incrementally by last-modified date.                            | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/envelopes.ts)                      |
| `folders`                      | Sync envelope folder structure with full-refresh delete tracking.                      | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/folders.ts)                        |
| `permission-profiles`          | Sync account permission profiles with full-refresh delete tracking.                    | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/permission-profiles.ts)            |
| `signing-groups`               | Sync signing groups (shared signature pools) with full-refresh delete tracking.        | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/signing-groups.ts)                 |
| `templates`                    | Sync template metadata with full-refresh delete tracking.                              | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/templates.ts)                      |
| `users`                        | Sync account users with full-refresh delete tracking.                                  | [Sync](/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/docusign/syncs/users.ts)                          |

## Access requirements

| Pre-Requisites    | Status | Comment |
| ----------------- | ------ | ------- |
| Paid dev account  | ❓      |         |
| Paid test account | ❓      |         |
| Partnership       | ❓      |         |
| App review        | ❓      |         |
| Security audit    | ❓      |         |

## Setup guide

*No setup guide yet.*

<Tip>Need help getting started? Get help in the \[community
]\(https: //nango.dev/slack).</Tip>

<Note>Contribute improvements to the setup guide by \[editing this page
]\(https: //github.com/nangohq/nango/tree/master/docs/integrations/all/docusign-sandbox.mdx)</Note>

## Useful links

* \[How to register an Application
  ]\(https: //developers.docusign.com/platform/build-integration/)
* \[OAuth-related docs
  ]\(https: //developers.docusign.com/platform/auth/authcode)
* \[List of OAuth scopes
  ]\(https: //developers.docusign.com/platform/auth/reference/scopes)
* \[Web API docs (their REST API)
  ]\(https: //developers.docusign.com/docs)

<Note>Contribute useful links by \[editing this page
]\(https: //github.com/nangohq/nango/tree/master/docs/integrations/all/docusign-sandbox.mdx)</Note>

## API gotchas

* Use the `docusign-sandbox` configuration in Nango to test your integration with the \[Docusign Developer account
  ]\(https: //developers.docusign.com/platform/account/).
* Remember, the DocuSign `integration key` is actually the 'client ID'. Also, you'll need to add a 'secret key' when creating your app.

<img
  src="https://mintcdn.com/nango/jNxmsZ4pW0gKOBN-/integrations/all/docusign/docusign_secret.png?fit=max&auto=format&n=jNxmsZ4pW0gKOBN-&q=85&s=035f70fb11bd75d541dd05941bfaf676"
  style={
{maxWidth: "450px"
}
}
  width="803"
  height="556"
  data-path="integrations/all/docusign/docusign_secret.png"
/>

<Note>Contribute API gotchas by \[editing this page
]\(https: //github.com/nangohq/nango/tree/master/docs/integrations/all/docusign-sandbox.mdx)</Note>
