Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/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 Technology Ltd. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Productivity / Blueink API v2
Blueink API v2 logo

Blueink API v2

Agent-ready OpenAPI document · curated by JenticProductivityCollaborationbearer44 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Send documents for electronic signature, track signer status, and download signed bundles and certificates of evidence through Blueink.

Use for: Send a document for signature with Blueink, Check the signing status of a Blueink bundle, Send a reminder to a Blueink signer, Cancel a Blueink signature bundle

Not supported: Does not store long-term document archives, generate document content, or process payments - use for sending, tracking, and downloading electronic signature bundles only.

Jentic publishes the only available OpenAPI specification for Blueink API v2, keeping it validated and agent-ready. Blueink is an electronic signature platform, and the v2 API exposes signing bundles, signer packets, reusable templates, person directory entries, and webhook subscriptions. Senders create a bundle of documents, attach packets for each signer, and track signing events through to completion-of-evidence reports. Authentication uses a private API token sent as a Bearer header, and the base URL is https://api.blueink.com/api/v2.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Blueink API v2 to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Blueink API v2, 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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fblueink.com%2Fblueink" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fblueink.com%2Fblueink" | 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 Blueink API v2 API.

Create a signing bundle from raw files or a saved envelope template

Track signer progress through bundle event timelines and packet status

Generate embedded signing URLs for in-app signature flows

Send reminder emails to signers who have not yet completed their packet

Cancel an in-flight bundle before all signers have completed

Manage a directory of recurring signers in the persons resource

Configure webhooks to receive bundle and packet status events with custom headers

Use Cases

Patterns agents use Blueink API v2 API for, with concrete tasks.

★ Contract signing for sales close

Send a sales contract for electronic signature when a deal closes in the CRM. POST /bundles/ uploads the document and signer packets in a single call, returning a bundleSlug used to track progress. Subsequent GET /bundles/{bundleSlug}/events/ reveals each viewed, signed, and declined event, and GET /bundles/{bundleSlug}/files/ returns the executed PDF and certificate of evidence after completion.

Call POST /bundles/ with a contract PDF and a signer packet for the prospect's email, then poll GET /bundles/{bundleSlug}/events/ until status is 'complete'.

Embedded signing in a customer portal

Embed the Blueink signing experience inside the sender's own application instead of redirecting to Blueink's hosted UI. Create the bundle, then call POST /packets/{packetId}/embed_url/ for each signer to receive a short-lived URL you load into an iframe or webview. Useful for SaaS onboarding, financial services portals, and any flow where staying on-brand matters.

Call POST /packets/{packetId}/embed_url/ for an existing packet and return the signing URL for embedding.

Template-driven recurring agreements

Use saved Blueink envelope templates to issue NDAs, SOWs, or HR onboarding documents repeatedly with consistent fields and routing. POST /bundles/create_from_envelope_template/ creates a new bundle from a template ID, with signer details merged in at send time. GET /templates/ and GET /templates/{templateId}/ enumerate available templates and their fields.

Call POST /bundles/create_from_envelope_template/ with a template ID and signer info to issue a new NDA for a vendor onboarding.

Webhook-driven completion automation

Trigger downstream workflows when Blueink documents are fully signed by configuring webhooks. POST /webhooks/ creates a subscription, and POST /webhooks/headers/ attaches custom HTTP headers (e.g. for HMAC verification). When a bundle completes, the webhook fires with bundle and packet details so the receiving system can store the executed PDF and update the originating record.

Call POST /webhooks/ with a target URL and event filter for bundle.completed, then POST /webhooks/headers/ to add an Authorization header for the receiver.

AI agent contract sending assistant

Let an AI agent draft, send, and chase contracts on a user's behalf. The agent searches Jentic for the right Blueink operation by intent, loads the schema, and executes with the API token held in your Jentic One instance. Suitable for sales copilots, legal-ops automation, and HR onboarding agents that need to put documents in front of signers without manual UI work.

Search Jentic for 'send a document for signature', load the schema for POST /bundles/, and execute it with a contract PDF and signer email for an embedded signing flow.

Key Endpoints

44 endpoints — jentic publishes the only available openapi specification for blueink api v2, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/bundles/

Create a new signing bundle

POST

/bundles/create_from_envelope_template/

Create a bundle from a saved template

GET

/bundles/{bundleSlug}/events/

Return the event timeline for a bundle

PUT

/bundles/{bundleSlug}/cancel/

Cancel an in-flight bundle

POST

/packets/{packetId}/embed_url/

Generate an embedded signing URL

PUT

/packets/{packetId}/remind/

Send a reminder to a signer

GET

/packets/{packetId}/coe/

Download the certificate of evidence

POST

/webhooks/

Create a webhook subscription

POST

/bundles/

Create a new signing bundle

POST

/bundles/create_from_envelope_template/

Create a bundle from a saved template

GET

/bundles/{bundleSlug}/events/

Return the event timeline for a bundle

PUT

/bundles/{bundleSlug}/cancel/

Cancel an in-flight bundle

POST

/packets/{packetId}/embed_url/

Generate an embedded signing URL

PUT

/packets/{packetId}/remind/

Send a reminder to a signer

GET

/packets/{packetId}/coe/

Download the certificate of evidence

POST

/webhooks/

Create a webhook subscription

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring Blueink by hand means implementing its bearer auth and threading bundle and packet ids through the signature lifecycle yourself. Through Jentic you install once, import Blueink from the API Directory, store the token once, and your agent calls it.

Permission scoping

Permission scoping

Blueink puts the bundle and packet ids in the URL path (/bundles/{bundleSlug}, /packets/{packetId}), so a rule can pin your agent to acting on a given bundle or packet: it can read events or send a reminder and nothing else. You choose the operations it may call, so cancelling a bundle is not included unless you add it.

Credential management

Credential isolation

Your Blueink bearer token is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'send a document for signature' or 'send a signing reminder', and Jentic returns the matching Blueink operation with its input schema so the agent calls the right endpoint without browsing the docs.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Bloomerang

→

Donor CRM - pair when collecting signed pledge agreements tied to constituent records

Use when an agent must record a signed pledge in Bloomerang after Blueink confirms the bundle is complete

Complementary

Blueshift

→

Customer engagement - pair to send signed-document confirmation emails or reminders

Use when an agent must trigger a Blueshift campaign after a Blueink bundle completes or stalls

Complementary

Bluetick

→

Email follow-up automation - pair for chasing signers who haven't completed

Use when an agent must trigger a Bluetick sequence after a Blueink reminder fails to elicit a signature

FAQs

Specific to using Blueink API v2 API through Jentic.

Why is there no official OpenAPI spec for Blueink API v2?

Blueink publishes a Postman collection and HTML reference but does not distribute a maintained OpenAPI 3 file. Jentic generates and maintains this spec so AI agents and developers can call the Blueink API via standard tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the Blueink API use?

Blueink uses a private API token sent as a Bearer credential in the Authorization header (Authorization: Token <api-key>). Tokens are issued from the Blueink dashboard. Through Jentic, the token is stored in the encrypted vault and injected at execution time, so the agent never handles the raw value.

Can I send a document for signature through this API?

Yes. POST /bundles/ accepts the documents, signer packets (each with email, name, and signature fields), and routing rules in a single call, returning a bundleSlug used to track the bundle. Files can be uploaded inline as base64 or referenced by URL.

What are the rate limits for the Blueink API?

Blueink applies per-account rate limits that are not enumerated in the spec. The published guidance is to keep request volume under roughly 60 requests per minute per token; HTTP 429 responses include a Retry-After header. Higher throughput is available on enterprise plans by request.

How do I track signer status through Jentic?

Search Jentic for 'check the signing status of a bundle', load the schema for GET /bundles/{bundleSlug}/events/, and execute it with the bundleSlug. Install with pip install jentic and call await client.execute(ExecutionRequest(...)). The response lists viewed, signed, declined, and completed events per signer.

Does Blueink support embedded signing?

Yes. After creating a bundle, call POST /packets/{packetId}/embed_url/ for each signer to receive a short-lived signing URL. Load the URL in an iframe or webview to keep signers inside your own application.

Is the Blueink API free?

Blueink offers tiered pricing - API access is included on paid plans, and a free trial is available for evaluation. Per-document pricing depends on the plan; volume discounts apply on annual contracts.

Can I limit what my agent is allowed to do with the Blueink API?

Yes. Because Jentic One is self-hosted, you write the rules that decide which Blueink operations and credentials your agent may use. Blueink carries the bundle and packet ids in the URL path (/bundles/{bundleSlug}, /packets/{packetId}), so you can pin the agent to a specific bundle or packet and allow only the calls you want, such as reading its events with GET /bundles/{bundleSlug}/events/ or sending a reminder with PUT /packets/{packetId}/remind/. Destructive actions like cancelling a bundle with PUT /bundles/{bundleSlug}/cancel/ stay off limits unless you explicitly add them to the allowed set.

GET STARTED

Start building with Blueink API v2 API

Explore with Jentic One
View OpenAPI Document