Developer docs

Ignisign integration

IgniSign is a comprehensive electronic signature platform that enables users to…

Updated June 2026 32 actions available

Provider
ignisign
Category
Other
Setup
User-supplied API key
Actions
32 available

Quick start

Call Ignisign from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Ignisign's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.

// In your generated app's worker handler:
const composio = composioClient(env);

const result = await composio.execute(
  "IGNISIGN_ACTION_NAME",
  { /* action parameters — see Actions section below */ }
);

return new Response(JSON.stringify(result), {
  headers: { "Content-Type": "application/json" }
});

Replace ACTION_NAME with one of the slugs listed in the Actions section below. The composio client handles auth + rate limits automatically — no API key is exposed to user code.

Setup

End-users supply their own Ignisign API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.

Available actions

32 actions exposed via the Ignisign integration. Each maps to a callable slug — pass it to composio.execute(...) in your worker code.

Show all 32 actions
  • IGNISIGN_GET_SIGNATURE_REQUEST_DETAILS
  • IGNISIGN_GET_SIGNATURE_REQUEST_DOCUMENT
  • IGNISIGN_GET_SIGNATURE_REQUESTS
  • IGNISIGN_GET_SIGNED_DOCUMENT
  • IGNISIGN_GET_SIGNER_INPUT_CONSTRAINTS
  • IGNISIGN_GET_SIGNER_INPUTS
  • IGNISIGN_GET_SIGNER_PROFILE
  • IGNISIGN_GET_SIGNER_PROFILES
  • IGNISIGN_GET_WEBHOOKS
  • IGNISIGN_INIT_SIGNATURE_REQUEST
  • IGNISIGN_LIST_DOCUMENTS
  • IGNISIGN_PROVIDE_DOCUMENT_CONTENT_DATA_JSON
  • IGNISIGN_PROVIDE_DOCUMENT_CONTENT_FILE
  • IGNISIGN_PROVIDE_DOCUMENT_CONTENT_PRIVATE_FILE
  • IGNISIGN_PUBLISH_SIGNATURE_REQUEST
  • IGNISIGN_SEARCH_SIGNERS
  • IGNISIGN_UPDATE_DOCUMENT_INFORMATION
  • IGNISIGN_UPDATE_SIGNATURE_REQUEST
  • IGNISIGN_UPDATE_SIGNER
  • IGNISIGN_UPDATE_WEBHOOK_ENDPOINT

Build with Ignisign

Open OverSkill, describe what you want to build, and reference Ignisign in your prompt — the AI will wire up the integration automatically.