View as Markdown
Dropbox Sign (HelloSign) icon

Dropbox Sign (HelloSign) ACTION

Send Signature Request From Template

Send a signature request from a template 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 Template 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-from-template",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    hellosign: { authProvisionId: "apn_xxxxxxx" },
    templateId: "Template",
    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 From Template inputs
Property Type Description
templateId Template string
Identifier of a template
Required Dynamic
signers Signers object
Enter names & email addresses as key/value pairs with name as the key and email as the value.
Required
role Role string
The role of the signer(s)
Required Dynamic
fileUrls File URLs string[]
An array of file URLs to send for signature
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-from-template
Version
0.0.2
App
Dropbox Sign (HelloSign)
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes