Ignisign icon

Ignisign

Electronic signature platform for signature requests, signers, documents, webhook endpoints, and application authentication.

Tailored to esignature workflows that authenticate per environment, attach documents to signature requests, manage signers, and configure webhook endpoints.

Example Use Cases

These are the Ignisign actions Snow can use when building apps with you. Connecting an account does not make Snow run these on its own.

Cancel Signature Request

Cancel (close) a signature request to terminate it. This uses the Ignisign /close endpoint which permanently cancels the signature workflow. Use this when you need to abort a signature request that is in DRAFT or IN_PROGRESS status. This operation is idempotent - calling it on an already cancelled request returns success without error.

Create Signer

Tool to create a new signer. Use when onboarding a signer to an application environment after selecting a signer profile.

Create Webhook Endpoint

Tool to create a new webhook endpoint for an application. Use after obtaining application ID and environment to register for event notifications.

Get application context

Tool to retrieve the global context of an application. Use when you need configuration and environment settings for a given app.

Get Document Information

Tool to retrieve document metadata by ID. Use when you need detailed information of a specific document after obtaining its ID.

Get Missing Signer Inputs

Tool to determine missing inputs needed for a signer in a specific signature profile. Use after selecting a signature profile and signer to identify required fields.

Get Signature Request Details

Tool to retrieve detailed information for a specific signature request. Use after creating or listing a signature request to inspect its details.

Get Signature Request Document

Tool to retrieve the document associated with a specific signature request. The action downloads the original file of a document. Provide `documentId` to select a specific document or omit to use the first available document of the request.

Get Signature Requests

Retrieves a paginated list of signature requests for a specific Ignisign application and environment. Use this to list all signature requests (drafts, in-progress, completed, cancelled) in an application. Each signature request can have associated documents and signers. Returns pagination metadata to iterate through large result sets. Note: The app_env parameter must match your API key's environment scope.

Get Signed Document

Tool to download the signed document (signature proof) for a signature request. The action will: 1) Resolve the first documentId from the signature request details. 2) Try v4: GET /documents/{documentId}/signatures/PDF_WITH_SIGNATURES 3) Fallback v3: GET /v3/documents/{documentId}/signature-proof 4) Final fallback: GET /documents/{documentId}/file (original file)