View as Markdown
IgniSign icon

IgniSign ACTION

Create Signer

Creates a new signer entity in IgniSign. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's IgniSign account once, then configure and run Create Signer 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: "ignisign-create-signer",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    ignisign: { authProvisionId: "apn_xxxxxxx" },
    signerProfileId: "Signer Profile ID",
    externalId: "External 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 Signer inputs
Property Type Description
signerProfileId Signer Profile ID string
The unique identifier of the signer profile
Optional Dynamic
externalId External ID string
An external identifier for the signer
Optional
firstName First Name string
The first name of the signer
Optional
lastName Last Name string
The last name of the signer
Optional
email Email string
The email of the signer
Required
phoneNumber Phone Number string
The phone number of the signer
Optional
nationality Nationality string
The nationality of the signer in ISO 3166-1 alpha-2
Optional
birthDate Birth Date string
The birth date of the signer
Optional
birthPlace Birth Place string
The place of birth of the signer
Optional
birthCountry Birth Country string
The country of birth of the signer in ISO 3166-1 alpha-2
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
ignisign-create-signer
Version
0.0.2
App
IgniSign
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes