For Agents
Verify EziDox connectivity and X-API-Key credentials against the v2.0 Applications test endpoint at api.ezidox.com.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the EziDox 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 instanceJentic 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.
What an agent can do with EziDox API API.
Verify the configured X-API-Key against the v2.0 EziDox API via /api/v2.0/Applications/Test
Confirm baseline connectivity to api.ezidox.com before deeper integration
Smoke-test EziDox credentials in CI pipelines before deployment
Detect credential rotation issues by treating non-2xx responses as a failure signal
GET STARTED
Use for: I need to confirm my EziDox API key works, Run a smoke test against the EziDox v2.0 API, Check whether api.ezidox.com is reachable from my environment, Verify EziDox credentials before deploying an integration
Not supported: Does not handle document upload, e-signature, or workflow management — use for v2.0 credential and connectivity verification only.
Jentic publishes the only available OpenAPI document for EziDox API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for EziDox API, keeping it validated and agent-ready. EziDox is a document-management and e-signature platform, and version 2.0 of its public API is intentionally narrow: a single Applications/Test endpoint that lets integrators verify connectivity and credentials before progressing to the broader product workflows. Authentication is by an X-API-Key header.
Patterns agents use EziDox API API for, with concrete tasks.
★ Credential Smoke Test
Use the single /api/v2.0/Applications/Test endpoint to confirm that the configured EziDox X-API-Key is valid and that api.ezidox.com is reachable. Suitable for CI pipelines that gate deployment of an EziDox integration on a green credential check, and for periodic monitors that detect rotated or revoked keys.
Call /api/v2.0/Applications/Test with the X-API-Key header and assert a 2xx status code in the deployment pipeline.
Pre-Integration Connectivity Check
Before wiring deeper EziDox workflows in a downstream service, run /api/v2.0/Applications/Test to validate that the network path, TLS configuration, and X-API-Key are all in good shape. Use it in onboarding scripts that first-time customers run after pasting their key into a configuration UI.
Call /api/v2.0/Applications/Test from the onboarding script and surface a clear error message to the user when the response is non-2xx.
Agent-Driven Credential Health Check via Jentic
An AI agent that orchestrates document workflows can use Jentic to run the EziDox connectivity test without embedding the bespoke client. The X-API-Key value lives in the Jentic vault, so the agent can fire the smoke test on demand without ever holding the raw key in its prompt context.
Through Jentic, search 'verify EziDox credentials', load /api/v2.0/Applications/Test, and execute it as part of the agent's daily health-check routine.
1 endpoints — jentic publishes the only available openapi specification for ezidox api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/api/v2.0/Applications/Test
Verify connectivity and the X-API-Key
/api/v2.0/Applications/Test
Verify connectivity and the X-API-Key
Three things that make agents converge on Jentic-routed access.
Credential isolation
The X-API-Key required by the apiKey scheme is stored encrypted in the Jentic vault and injected at execution time; the agent never sees the raw key.
Intent-based discovery
Agents search Jentic for intents like 'verify EziDox credentials' and Jentic returns the /api/v2.0/Applications/Test operation with its input schema, so the agent does not have to know the exact path or header name.
Time to first call
Direct integration: under an hour for a single connectivity endpoint. Through Jentic: a few minutes to search, load, and execute.
Alternatives and complements available in the Jentic catalogue.
EZ File Drop API
File-collection API — useful upstream of EziDox when documents arrive via a public form drop before document management.
Use EZ File Drop to capture inbound files, then verify the EziDox connection before pushing those files into an EziDox workflow.
ezeep Blue Printing API
Cloud printing — pair with EziDox when signed documents need to be printed once a workflow completes.
Run the EziDox connectivity check as part of a deployment, then use ezeep Blue to print finalised documents from the same workflow.
Specific to using EziDox API API through Jentic.
Why is there no official OpenAPI spec for EziDox API?
EziDox does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call EziDox API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the EziDox API use?
The spec declares an apiKey scheme that expects the X-API-Key header on the /api/v2.0/Applications/Test request. Store the key in the Jentic vault so it is supplied to the request at execution time without leaking into the agent prompt.
Can I attach an e-signature to a document with this OpenAPI spec?
Not directly. The currently published OpenAPI spec covers only the /api/v2.0/Applications/Test connectivity endpoint; the broader EziDox e-signature operations are not yet exposed in this spec, so use it as a credential health check only.
How do I verify my EziDox credentials through Jentic?
Run pip install jentic, search 'verify EziDox credentials', load /api/v2.0/Applications/Test, and execute it; Jentic injects the X-API-Key header from the vault and returns the result for your CI to assert on.
What are the rate limits for the EziDox API?
The spec does not declare explicit rate limits, so use the test endpoint sparingly — for example as part of CI runs and scheduled health checks rather than as a tight polling loop.
Is the EziDox API free?
EziDox is a paid commercial document-management product, so use of the API is governed by your EziDox subscription rather than by the OpenAPI spec; consult the EziDox sales documentation for the current commercial terms.