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

# Box Sign

export const Link = ({href, children, className, ...props}) => {
  const localizedHref = href;
  return <a href={localizedHref} className={className} {...props}>
      {children}
    </a>;
};

Programmatically harness the full functionality of the Box Sign web app
experience by leveraging Box Sign’s API endpoints to create, list, resend, and
cancel sign requests.

## Enablement

The following account types support requests through the Box Sign API:
Business, Business Plus, Enterprise, Enterprise Suites, Enterprise Plus, and
Enterprise Advanced.
To locate your account type, navigate to **Account Settings** and scroll down
to the **Account Details** section of the **Account** tab. For Admin details on
restricting access, please see our [support article][restrict].

## Required scopes

The following <Link href="/guides/api-calls/permissions-and-errors/scopes">scopes</Link> must be enabled for an application before use of
Box Sign's endpoints.

* <Link href="/guides/api-calls/permissions-and-errors/scopes/#read-all-files-and-folders">Read all files and folders stored in Box</Link>
* <Link href="/guides/api-calls/permissions-and-errors/scopes/#read-and-write-all-files-and-folders">Write all files and folders stored in Box</Link>
* <Link href="/guides/api-calls/permissions-and-errors/scopes/#manage-signature-requests">Manage signature requests</Link>

<Warning>
  Depending on the selected authentication method and enterprise's settings,
  your application may require Admin authorization or re-authorization before
  successful use of any newly selected scopes.
</Warning>

## Events

Please see our <Link href="/guides/events/event-triggers/sign-events">events guide</Link> for more information.

## Webhooks

Please see our <Link href="/guides/webhooks/triggers">webhooks guide</Link> for more information.

## Rate Limits

Please see our <Link href="/guides/api-calls/permissions-and-errors/rate-limits/#per-api-rate-limits">rate limit guide</Link> for more information.

## Testing

Due to the feature parity, it may be useful to familiarize yourself with
[Box Sign functionality using the Box web app][webapp] before leveraging the
API. As with all API endpoints, we recommend testing via
[developer sandbox environment][sandbox] to eliminate the risk of impacting
production content.

[restrict]: https://support.box.com/hc/en-us/articles/4404076971155-Enabling-Box-Sign

{/* i18n-enable localize-links */}

[webapp]: https://support.box.com/hc/en-us/articles/4404105810195-Sending-a-document-for-signature

[sandbox]: https://support.box.com/hc/en-us/articles/360043697274-Managing-developer-sandboxes-for-Box-admins
