For Agents
Create and update people, tag for segmentation, track events that drive flows, and send transactional emails through Encharge.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Encharge 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.
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 | shStep 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 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 Encharge API.
Create or update a person record by email to keep the contact graph in sync
Add or remove tags on a person to drive segmentation and flow entry
Track product or behavioural events that fire automation flows
GET STARTED
Use for: I need to create or update a contact in Encharge, Tag a contact as a paying customer, Track a 'plan_upgraded' event for a user, Send a transactional welcome email through Encharge
Not supported: Does not handle CRM deal pipelines, SMS, or ad campaign management — use for SaaS marketing automation and transactional email only.
Jentic publishes the only available OpenAPI specification for Encharge API, keeping it validated and agent-ready. Encharge is a marketing automation platform built around people (contacts), tags, events, and broadcast and transactional emails. The API exposes the operations needed to create or update people, tag them for segmentation, track behavioural events that drive flows, and send transactional emails. Use it to wire product activity directly into nurture sequences without writing custom integration glue.
Send a transactional email triggered by application logic
Look up a person by email to read their current state before updating
Delete a person to honour data subject deletion requests
Patterns agents use Encharge API for, with concrete tasks.
★ Product Event-Driven Nurture
Wire product activity into Encharge so behavioural events drive automation flows automatically. The API exposes POST /events for tracking and POST /people for upserts so the contact and event graph stays current as users interact with the product. Marketing operations teams use this to replace generic time-based campaigns with flows that fire on real product behaviour.
POST /people to upsert the contact, then POST /events with the event name and properties to fire the matching flow.
Lifecycle Tagging
Tag contacts as their lifecycle changes — trial started, paid, churned — so segmentation in Encharge stays in sync with the source of truth in product or billing systems. The API exposes POST /tags and DELETE /tags for managing tag membership per person. Lifecycle marketing teams use this to keep audience segmentation reliable without manual list uploads.
POST /tags with {tag, email} to add the tag, and DELETE /tags with the same payload to remove a stale tag.
Transactional Email from Application Code
Send transactional emails — receipts, password resets, in-app notifications — through Encharge so transactional and marketing email share the same template and tracking layer. The API exposes POST /emails/send with the recipient and template payload. Engineering teams use this to consolidate sender domains and reporting across both email types.
POST /emails/send with the recipient email, template identifier, and merge variables for the message.
Agent-Driven Lifecycle Sync
An agent watching billing webhooks updates the matching Encharge contact, tags lifecycle status, and tracks the event so the right nurture flow fires. Through Jentic the agent searches by intent, loads the schemas, and chains calls without bespoke client code. The lifecycle sync that previously required custom middleware drops to a single agent task.
Search Jentic for 'update a marketing automation contact', execute POST /people, POST /tags, and POST /events for the lifecycle event in sequence.
8 endpoints — jentic publishes the only available openapi specification for encharge api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/people
Create or update a person
/people/{email}
Get a person by email
/people/{email}
Delete a person
/tags
Add a tag to a person
/tags
Remove a tag from a person
/events
Track an event for a person
/emails/send
Send a transactional email
/people
Create or update a person
/people/{email}
Get a person by email
/people/{email}
Delete a person
/tags
Add a tag to a person
/tags
Remove a tag from a person
/events
Three things that make agents converge on Jentic-routed access.
Credential isolation
The Encharge API token is stored encrypted in the Jentic vault. Agents receive scoped access tokens — the raw token never enters the agent's context, and Jentic injects it into the X-Encharge-Token header at execution time.
Intent-based discovery
Agents search by intent (e.g., 'track a marketing automation event') and Jentic returns matching Encharge operations with their input schemas, so the agent calls the right endpoint without reading docs.
Time to first call
Direct Encharge integration: half a day for client code, auth, and event-tagging plumbing. Through Jentic: under 30 minutes — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Encharge API through Jentic.
Why is there no official OpenAPI spec for Encharge API?
Encharge does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call Encharge 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 Encharge API use?
The API uses an API key passed in the X-Encharge-Token header. Through Jentic the token is held encrypted in the vault and injected into the header at execution time, so it never enters an agent's context.
Can I track a product event with the Encharge API?
Yes. POST /events accepts the event name, the person's email, and a properties object. Encharge uses the event to fire any matching automation flows.
How do I send a transactional email through Jentic?
Search Jentic for 'send a transactional email Encharge', load the schema for POST /emails/send, and execute it with the recipient and template variables.
What are the rate limits for the Encharge API?
The OpenAPI spec does not declare quantitative rate limits. Encharge enforces limits at the account level; treat HTTP 429 responses as authoritative and respect any Retry-After header.
Can I delete a person from Encharge for GDPR compliance?
Yes. DELETE /people/{email} removes the person record so subsequent calls referencing that email return 404. Use this path for data subject deletion requests.
Track an event for a person
/emails/send
Send a transactional email