npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@memberjunction/esignature-dropboxsign

v5.41.0

Published

Dropbox Sign (formerly HelloSign) driver for the MemberJunction eSignature primitive. Registers a BaseSignatureProvider implementation via @RegisterClass(BaseSignatureProvider, 'DropboxSign') using the Dropbox Sign v3 REST API and API-key authentication.

Readme

← Back to eSignature Overview · Core Primitive

@memberjunction/esignature-dropboxsign

The Dropbox Sign (formerly HelloSign) driver for the MemberJunction eSignature subsystem. It implements the BaseSignatureProvider contract against the Dropbox Sign REST API v3, using HTTP Basic authentication with your API key.

npm install @memberjunction/esignature-dropboxsign

You don't call this package directly. You configure a Dropbox Sign Signature Account and use the SignatureEngine (or the no-code Actions). The engine resolves and drives this provider for you.


At a glance

| | | |---|---| | Driver key | DropboxSign | | Registration | @RegisterClass(BaseSignatureProvider, 'DropboxSign') | | Authentication | HTTP Basic (API key as username, empty password) | | API | Dropbox Sign REST API v3 (api.hellosign.com/v3) | | Webhooks | HMAC-SHA256 verified |

Supported operations

| Operation | Supported | |---|:---:| | Create envelope | ✅ | | Get status | ✅ | | Download signed | ✅ | | Void | ✅ | | Parse webhook event | ✅ | | Verify webhook signature | ✅ | | Templates | — | | Embedded signing | — |


Configuration

These values live in the account's Credential (encrypted via the Credential Engine) — never in code or environment variables.

| Key | Required | Default | Description | |---|:---:|---|---| | apiKey | ✅ | — | Dropbox Sign API key, sent via HTTP Basic auth. | | restBase | — | https://api.hellosign.com/v3 | REST API base. | | testMode | — | false | When true, requests are flagged as non-billable test requests. Great for development. | | connectHmacKey | — | (falls back to apiKey) | HMAC secret for verifying webhooks. Dropbox Sign signs callbacks with the account API key by default, so this is optional. |

Test mode

Dropbox Sign supports a first-class test mode that creates non-billable signature requests — ideal for development and CI. Set testMode: true on the account configuration and every request the driver sends is marked test_mode=1. Flip it off for production.

One-time setup

  1. In Dropbox Sign, generate an API key (Settings → API).
  2. In MemberJunction:
    • The Dropbox Sign Signature Provider row is already seeded.
    • Create a Credential holding apiKey (and testMode if developing).
    • Create a Signature Account pointing at that credential.
  3. (Production) Configure a Dropbox Sign callback URL pointing at POST {your-server}/esignature/webhook/DropboxSign.

Status mapping

Dropbox Sign reports state two ways: request-level booleans (is_complete, is_declined) and a per-signer status_code. The driver checks the booleans first, then falls back to the lead signer's status_code (defaulting to Sent when none is present). Both map onto MemberJunction's normalized lifecycle:

Request-level (checked first):

| Dropbox Sign flag | MJ EnvelopeStatus | |---|---| | is_complete | Completed | | is_declined | Declined |

Per-signer status_code (fallback):

| Dropbox Sign status | MJ EnvelopeStatus | |---|---| | awaiting_signature | Sent | | on_hold | Delivered | | signed | Signed | | declined | Declined | | error, (any unrecognized code) | Unknown | | (no signer status present) | Sent |


Webhooks

Dropbox Sign pushes events to POST /esignature/webhook/DropboxSign. Each callback carries an event_hash computed as an HMAC-SHA256 over <event_time><event_type> keyed with your API key (or an explicit connectHmacKey). The driver recomputes and compares it before trusting the event. See the webhook flow.


Testing

cd packages/eSignature/Providers/DropboxSign && npm run test

Related

| | | |---|---| | eSignature overview | The whole subsystem. | | Core primitive | The contract, engine, and data model this driver plugs into. | | DocuSign driver · PandaDoc driver | Sibling providers. |