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 / Marketing / Hubspot / Marketing Emails
Marketing Emails logo

HubSpot Marketing Emails

Browse all Hubspot APIs
✓ Official Vendor SpecMarketingEmail Marketingoauth219 EndpointsREST

For Agents

Manage HubSpot marketing email drafts, AB-test variations, revisions, and publishing, plus pull per-email statistics for reporting.

Use for: I need to publish a draft marketing email, Create an AB-test variation of an existing email, Restore a previous revision of an email into the draft slot, Reset a draft email back to the last published version

Not supported: Does not send transactional one-off emails, manage CRM contact lists, or handle SMS — use for managing marketing email asset drafts, AB tests, revisions, and statistics only.

The HubSpot Marketing Emails API manages the lifecycle of marketing email assets — drafts, AB-test variations, revisions, publishing, and statistics. It supports listing emails, publishing a draft to send, creating and reading AB-test variations, resetting and restoring drafts from prior revisions, and pulling per-email statistics with both list and histogram aggregations. With 19 endpoints across the email, draft, AB-test, revisions, and statistics paths, it gives marketing-ops the editorial workflow plus the reporting layer for outbound email programmes.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Marketing Emails to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Marketing Emails, 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 Marketing Emails API.

Publish a draft marketing email so it transitions from edit-mode to send-ready

Create an AB-test variation of an existing email and read the variation back by id

Reset a draft back to the last published state for safe rollback

Restore a previous revision into the draft slot to recover earlier content

Pull per-email send statistics as a list or as a histogram across time buckets

List, retrieve, and update marketing email assets through the email lifecycle

Use Cases

Patterns agents use Marketing Emails API for, with concrete tasks.

★ Editorial Workflow Automation

Automate the marketing email editorial workflow by scripting the draft-to-publish lifecycle. Update the draft via the draft endpoint, run validation, then call POST /marketing/v3/emails/{emailId}/publish to push it live. If something goes wrong, reset the draft to the last published state or restore a prior revision into the draft slot — both are first-class operations rather than database hacks.

Call POST /marketing/v3/emails/{emailId}/publish to push the current draft live, or POST /marketing/v3/emails/{emailId}/draft/reset to roll back to the last published state.

AB Test Variation Setup

Set up AB tests by creating a variation of an existing marketing email through POST /marketing/v3/emails/ab-test/create-variation, then read the variation back by id and the original email's variation list to confirm the test is wired correctly. HubSpot handles traffic splitting and winner selection once the variation is published; this API gives the agent the structural setup.

Call POST /marketing/v3/emails/ab-test/create-variation with the source emailId, then GET /marketing/v3/emails/{emailId}/ab-test/get-variation to confirm.

Email Engagement Reporting

Pull per-email send statistics for dashboards and weekly digests. The list endpoint returns a flat statistics record per email; the histogram endpoint buckets engagement (opens, clicks, deliveries) over time so you can plot trend charts without aggregating client-side. Useful for marketing-ops bots that publish channel performance every Monday.

Call GET /marketing/v3/emails/statistics/list filtered by emailId, or GET /marketing/v3/emails/statistics/histogram with a time bucket interval to plot trends.

AI Agent Email QA via Jentic

An AI agent that QAs marketing emails before each send checks the latest draft, validates copy and links, then calls publish if checks pass. The agent searches Jentic for HubSpot email operations, loads schemas for the draft-read and publish endpoints, and chains them. Jentic stores the OAuth token so the agent never handles raw credentials.

Search Jentic for "publish hubspot marketing email", load the schema for POST /marketing/v3/emails/{emailId}/publish, and execute after the QA checks pass.

Key Endpoints

19 endpoints — the hubspot marketing emails api manages the lifecycle of marketing email assets — drafts, ab-test variations, revisions, publishing, and statistics.

METHOD

PATH

DESCRIPTION

POST

/marketing/v3/emails/{emailId}/publish

Publish the current draft of a marketing email

GET

/marketing/v3/emails/{emailId}/draft

Read the current draft of a marketing email

POST

/marketing/v3/emails/{emailId}/draft/reset

Reset the draft back to the last published version

POST

/marketing/v3/emails/ab-test/create-variation

Create an AB-test variation of an email

GET

/marketing/v3/emails/{emailId}/ab-test/get-variation

Read an AB-test variation by source email id

POST

/marketing/v3/emails/{emailId}/revisions/{revisionId}/restore-to-draft

Restore a prior revision into the draft slot

GET

/marketing/v3/emails/statistics/list

List per-email engagement statistics

GET

/marketing/v3/emails/statistics/histogram

Get a histogram of email engagement

POST

/marketing/v3/emails/{emailId}/publish

Publish the current draft of a marketing email

GET

/marketing/v3/emails/{emailId}/draft

Read the current draft of a marketing email

POST

/marketing/v3/emails/{emailId}/draft/reset

Reset the draft back to the last published version

POST

/marketing/v3/emails/ab-test/create-variation

Create an AB-test variation of an email

GET

/marketing/v3/emails/{emailId}/ab-test/get-variation

Read an AB-test variation by source email id

POST

/marketing/v3/emails/{emailId}/revisions/{revisionId}/restore-to-draft

Restore a prior revision into the draft slot

GET

/marketing/v3/emails/statistics/list

List per-email engagement statistics

GET

/marketing/v3/emails/statistics/histogram

Get a histogram of email engagement

Why Jentic?

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

Credential management

Credential isolation

HubSpot OAuth and private app tokens are stored encrypted in the Jentic MAXsystem vault. Agents receive scoped execution access — the raw bearer token never enters the agent's context window.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'publish hubspot marketing email' and Jentic returns the matching operation with its input schema, so the agent calls POST /marketing/v3/emails/{emailId}/publish without browsing HubSpot docs.

Time to first call

Time to first call

Direct HubSpot integration: 2-4 days for OAuth setup, draft management, AB-test wiring, and statistics integration. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Marketing Single-send

→

Trigger a one-off send of a marketing email to a single recipient

Choose this when the agent needs to fire a single transactional send rather than manage the email asset.

Alternative

Marketing Emails V3

→

Newer rollout of the marketing emails endpoints with overlapping scope

Choose V3 when the agent should consume the latest rollout shape of these endpoints.

Complementary

Marketing Campaigns

→

Attach marketing emails to campaigns for cross-asset attribution

Choose this when the email is part of a broader multi-asset campaign.

Alternative

SendGrid Mail

→

Dedicated email delivery API focused on transactional and high-volume sends

Choose SendGrid when the use case is delivery-first rather than HubSpot CRM integrated.

FAQs

Specific to using Marketing Emails API through Jentic.

What authentication does the Marketing Emails API use?

It accepts HubSpot OAuth 2.0 access tokens or private app tokens, sent as Bearer in the Authorization header. Through Jentic, the token is stored encrypted in MAXsystem and injected at execution time.

Can I publish a marketing email programmatically?

Yes. Call POST /marketing/v3/emails/{emailId}/publish to publish the current draft. The endpoint moves the draft into the published slot and queues the email for send according to its configured schedule.

How do I roll back an email if a draft change went wrong?

Two paths: POST /marketing/v3/emails/{emailId}/draft/reset reverts the draft to the last published state, or POST /marketing/v3/emails/{emailId}/revisions/{revisionId}/restore-to-draft restores a specific historical revision.

What are the rate limits for the Marketing Emails API?

Account-level limits are 100 requests per 10 seconds across HubSpot's authenticated APIs, with daily caps that depend on the subscription tier. Statistics endpoints are read-heavy — cache the histogram response in your dashboard layer.

How do I publish a marketing email through Jentic?

Run pip install jentic, search for "publish hubspot marketing email", load the schema for POST /marketing/v3/emails/{emailId}/publish, and execute with the email id. Sign up at https://app.jentic.com/sign-up.

Does this API send a single ad-hoc email to one recipient?

No. For one-off transactional sends use the Marketing Single-send API. This API is for managing the marketing email asset lifecycle and bulk send programmes.

GET STARTED

Start building with Marketing Emails API

Explore with Jentic
View OpenAPI Document