View as Markdown
Signaturit icon

Signaturit ACTION

Create Signature Request from Template

Creates a signature request using a pre-existing template. See the documentation
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Signaturit account once, then configure and run Create 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: "signaturit-create-signature-request-from-template",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    signaturit: { authProvisionId: "apn_xxxxxxx" },
    body: "Body",
    brandingId: "Branding ID",
  },
})

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.

Create Signature Request from Template inputs
Property Type Description
body Body string
Email body (html code is allowed) for email and sms type requests. Note: For sms request types it will be truncated to 120 characters Note: For sms the body should contain the tag {{url}} where we will include the document url.
Optional
brandingId Branding ID string
ID of the branding to use.
Optional Dynamic
callbackUrl Callback URL string
Url to redirect the user when finish the signature process.
Optional
data Custom Data object
Custom key-value data in JSON format.
Optional
deliveryType Delivery Type string
Delivery type for signature request.
Optional
expireTime Expiration Time (days) integer
Expiration time of the document in days (max 365).
Optional
eventsUrl Events URL string
URL to receive real-time events.
Optional
files Files string[]
The file(s) to attach. For each entry, provide either a file URL or a path to a file in the /tmp directory (for example, /tmp/myFile.txt)
Optional
name Name string
Name assigned to the signature request.
Required
recipients Recipients string[]
List of recipients in JSON format, e.g., '{"name": "John Doe", "email": "john@example.com", "phone": "34555667788"}'. See the documentation for further information.
Required
cc CC string[]
List with email recipients containing name and email for people that will receive a copy of the signed document when the process is completed. e.g., '{"name": "John Doe", "email": "john@example.com"}'.
Optional
replyTo Reply To string
Email Reply-To address.
Optional
reminders Reminders (days) string[]
Reminders in days to send automatic reminders. You can set it 0 to disable reminders. E.g. [1,3,4]
Optional
signingMode Signing Mode string
The signing mode lets you control the order in which your recipients receive and sign your documents.
Optional
subject Subject string
Email subject for email type requests.
Optional
templates Templates string[]
Templates to use in the signature request.
Required Dynamic
type Type string
The type of the signature.
Optional
syncDir SyncDir dir
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
signaturit-create-signature-request-from-template
Version
0.1.2
App
Signaturit
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes