View as Markdown
Dropbox Sign (HelloSign) icon

Dropbox Sign (HelloSign) ACTION

Send Signature Request

Send a signature request with Dropbox Sign. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Dropbox Sign (HelloSign) account once, then configure and run Send Signature Request from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "hellosign-send-signature-request",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    hellosign: { authProvisionId: "apn_xxxxxxx" },
    fileUrls: ["File URLs"],
    signers: "Signers",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Send Signature Request inputs
Property Type Description
fileUrls File URLs string[]
An array of file URLs to send for signature
Required
signers Signers object
Enter names & email addresses as key/value pairs with name as the key and email as the value.
Required
ccEmailAddresses CC Email Addresses string[]
The email addresses that should be CCed.
Optional
allowDecline Allow Decline boolean
Allows signers to decline to sign a document
Optional
message Message string
The custom message in the email that will be sent to the signers.
Optional
subject Subject string
The subject in the email that will be sent to the signers.
Optional
title Title string
The title you want to assign to the SignatureRequest.
Optional
testMode Test Mode boolean
Whether this is a test, the signature request will not be legally binding if set to true.
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
hellosign-send-signature-request
Version
0.0.2
App
Dropbox Sign (HelloSign)
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes