Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Productivity / BoldSign API
BoldSign API logo

BoldSign API

✓ Official Vendor SpecProductivityCollaborationapiKey84 EndpointsREST

For Agents

Send documents for e-signature, manage templates and contacts, embed signing into your app, and download signed PDFs and audit trails through BoldSign.

Use for: I need to send a contract for signature to two signers, Generate an embedded signing URL for my application, Download the signed PDF and audit log for a completed envelope, Send a reminder to a signer who has not yet signed

Not supported: Does not handle contract drafting, payment collection, or document storage outside the signature lifecycle — use for sending and managing e-signature workflows only.

BoldSign is an electronic signature platform from Syncfusion that lets businesses send, sign, and manage legally binding documents. The API exposes 84 endpoints covering documents, templates, contacts, brands, teams, sender identities, custom fields, and identity verification. Use it to send documents for signature, embed signing into your own application, build reusable templates, and download signed copies and audit trails. It also supports advanced flows like ID verification, prefill, and embedded designer URLs.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the BoldSign API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the BoldSign API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with BoldSign API.

Send a document for signature with one or more signers and an optional access code

Create reusable templates and dispatch documents from them, including merging multiple templates

Generate embedded URLs so signers can sign without leaving your application

Download the final signed PDF and the tamper-evident audit trail for compliance

Run identity verification on signers and retrieve the resulting verification report

Manage contacts, contact groups, and brands used to personalise signature requests

Send reminders, extend expiry, change recipients, or revoke a document mid-flight

Use Cases

Patterns agents use BoldSign API for, with concrete tasks.

★ Embedded Signing in a SaaS Product

Embed the signing experience directly inside your product so signers never leave the app. Create the document with /v1/document/createEmbeddedRequestUrl, render the returned URL in an iframe, and use /v1/document/getEmbeddedSignLink for subsequent signers. Removes the email round-trip and keeps users inside your branded experience.

POST /v1/document/createEmbeddedRequestUrl with one signer and the contract PDF, then return the embed URL to the frontend

Template-Driven Sales Contracts

Build a sales contract template once with placeholder fields, then dispatch personalised copies for each new deal. /v1/template/create stores the template, /v1/template/send fires it off with merged values, and /v1/template/mergeAndSend combines multiple templates into a single envelope. Sales ops teams use this to remove the copy-paste work of generating contracts.

POST /v1/template/send with templateId tmpl_5521 and the buyer's name, email, and contract value

ID Verification for High-Trust Documents

Require government ID verification before a signer can complete a sensitive document such as a loan or NDA. Generate the verification URL with /v1/identityVerification/createEmbeddedVerificationUrl, then pull the report via /v1/identityVerification/report once the signer has completed it. Useful for fintech, legal, and HR onboarding flows.

POST /v1/identityVerification/report for documentId doc_8821 and signer email signer@example.com

Compliance Archive and Audit Trail

Pull the signed PDF and audit log for every completed document and archive both into your compliance store. /v1/document/download returns the signed file and /v1/document/downloadAuditLog returns the tamper-evident trail. Required for regulated industries that need a defensible record of who signed what and when.

GET /v1/document/download and /v1/document/downloadAuditLog for documentId doc_8821 and store in s3://compliance/contracts/

AI Agent Document Workflow

An AI agent uses Jentic to discover BoldSign operations from natural-language requests, sends documents for signature, sends reminders, and pulls signed PDFs without ever holding the API key. The credential lives in the Jentic vault while the agent runs the search-load-execute cycle for each step. Time-to-integration drops from days of API key plumbing to under an hour.

Search Jentic for 'send a document for signature', load the operation, and execute it with the contract file and signer list

Key Endpoints

84 endpoints — boldsign is an electronic signature platform from syncfusion that lets businesses send, sign, and manage legally binding documents.

METHOD

PATH

DESCRIPTION

POST

/v1/document/send

Send a document for signature

POST

/v1/document/createEmbeddedRequestUrl

Generate an embedded send URL

GET

/v1/document/download

Download the signed document

GET

/v1/document/downloadAuditLog

Download the audit trail

POST

/v1/document/remind

Send reminder to pending signers

POST

/v1/template/send

Send a document for signature using a template

POST

/v1/identityVerification/createEmbeddedVerificationUrl

Generate an embedded ID verification URL

POST

/v1/document/revoke

Revoke a document already in flight

POST

/v1/document/send

Send a document for signature

POST

/v1/document/createEmbeddedRequestUrl

Generate an embedded send URL

GET

/v1/document/download

Download the signed document

GET

/v1/document/downloadAuditLog

Download the audit trail

POST

/v1/document/remind

Send reminder to pending signers

POST

/v1/template/send

Send a document for signature using a template

POST

/v1/identityVerification/createEmbeddedVerificationUrl

Generate an embedded ID verification URL

POST

/v1/document/revoke

Revoke a document already in flight

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

BoldSign API keys are stored encrypted in the Jentic vault (MAXsystem) and exchanged for scoped, short-lived access at execution time. The raw X-API-KEY value never enters the agent's prompt context or logs.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'send a document for signature' or 'download signed PDF' and Jentic returns the matching BoldSign operation with its full input schema, so the agent can call it without browsing the BoldSign reference.

Time to first call

Time to first call

Direct BoldSign integration: 2-4 days to handle auth, embedded URL generation, webhooks, and audit log retrieval. Through Jentic: under an hour with search, load, and execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Boast API

→

After a contract signs in BoldSign, request a customer testimonial via Boast.

Pair when closing a deal should automatically trigger a post-sale testimonial request.

Complementary

Bokio API

→

Issue a Bokio invoice once a BoldSign contract is countersigned.

Use this combination for Swedish small businesses that bill against signed contracts.

Alternative

Bonusly API

→

An unrelated workflow API focused on internal recognition rather than signature.

Choose Bonusly for employee recognition; choose BoldSign for contract execution.

FAQs

Specific to using BoldSign API through Jentic.

What authentication does the BoldSign API use?

BoldSign supports two API key schemes sent via header: an X-API-KEY header with the raw API key, or an Authorization header with the value 'Bearer <token>'. Through Jentic the key is stored encrypted in the vault and the agent never sees the raw value.

Can I embed signing into my application with the BoldSign API?

Yes. Use POST /v1/document/createEmbeddedRequestUrl to get a send URL for embedding the request flow, and GET /v1/document/getEmbeddedSignLink to retrieve a sign URL for each signer. Render either inside an iframe in your application.

How do I send a document for signature through Jentic?

Search Jentic for 'send a document for signature', load the POST /v1/document/send operation schema, then execute it with the file, signer list, and any access code. Jentic handles the API key automatically.

What are the rate limits for the BoldSign API?

BoldSign meters usage in API credits rather than fixed per-minute limits. Use GET /v1/plan/apiCreditsCount to read your current credit balance and pace requests accordingly. Different operations consume different credit amounts.

Can I download the signed PDF and audit log?

Yes. GET /v1/document/download returns the final signed PDF and GET /v1/document/downloadAuditLog returns the tamper-evident audit trail. Both accept the documentId as a query parameter.

Does the BoldSign API support signer identity verification?

Yes. Use POST /v1/identityVerification/createEmbeddedVerificationUrl to require ID verification before signing, then POST /v1/identityVerification/report to retrieve the verification result for that signer.

GET STARTED

Start building with BoldSign API

Explore with Jentic
View OpenAPI Document