View as Markdown
Signaturit icon

Signaturit ACTION

Create Certified Email

Initiates the creation of a certified email. 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 Certified Email 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-certified-email",
  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 Certified Email inputs
Property Type Description
body Body string
Email body (html code is allowed).
Optional
brandingId Branding ID string
ID of the branding to use.
Optional Dynamic
eventsUrl Events URL string
URL to receive real-time events.
Optional
data Custom Data object
Custom key-value data in JSON format.
Optional
attachments Attachment File Paths or URLs 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
recipients Recipients string[]
List of recipients in JSON format, e.g., '{"name": "John Doe", "email": "john@example.com"}'. See the documentation for further information.
Required
type Type string
Type of certified email.
Optional
subject Subject string
Email subject for email type requests.
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-certified-email
Version
0.1.2
App
Signaturit
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes