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 / Communications / Hubspot / Conversations Inbox & Messages
Conversations Inbox & Messages logo

HubSpot Conversations Inbox & Messages

Browse all Hubspot APIs
✓ Official Vendor SpecCommunicationsChat Messagingoauth2, apiKey16 EndpointsREST

For Agents

Read HubSpot conversation threads, send messages into existing threads, and manage inbox metadata across email and chat channels. Useful for agents triaging or responding to support conversations.

Use for: List all HubSpot conversation inboxes on this account, Retrieve the message history of a specific support thread, Send a reply into an existing conversation thread, Archive a closed support thread

Not supported: Does not configure custom channels, identify anonymous web visitors, or manage CRM contact records — use for HubSpot inbox thread and message operations only.

The HubSpot Conversations Inbox & Messages API exposes the shared inbox model that backs HubSpot Service Hub conversations. It returns inboxes, threads, individual messages, channels, channel accounts, and actor metadata, and allows sending replies, archiving threads, and updating thread state. The API spans the core surface needed to read history and post into existing conversations across email, chat, and connected channels.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Conversations Inbox & Messages to your agent

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

List conversations inboxes connected to the HubSpot account

Retrieve a thread, its message history, and original message content

Send a reply message into an existing thread

Archive a thread or update its assignee, status, or metadata

List channels and channel accounts available for conversations

Look up actors (users or visitors) associated with messages

Read messages individually or in batches by thread

Use Cases

Patterns agents use Conversations Inbox & Messages API for, with concrete tasks.

★ AI Triage of Support Threads

Pull recent threads from a HubSpot Service Hub inbox, summarise each, and assign them to the right team member or send a templated first response. The Inbox & Messages API exposes thread listings, full message history, and a send-message endpoint, which is the full read-and-respond loop a triage agent needs.

GET /conversations/v3/conversations/threads, then for each unassigned thread GET its messages and POST /conversations/v3/conversations/threads/{threadId}/messages with a triage reply.

Conversation Archival and Audit

Export thread history for compliance or analytics by paging through threads and pulling original message content. The API returns each message's raw content via GET /conversations/v3/conversations/threads/{threadId}/messages/{messageId}/original-content, suitable for archival into a data warehouse.

Iterate threads via GET /conversations/v3/conversations/threads, fetch each thread's messages, and store the original-content payload to S3.

Multi-Channel Reply Bot

Build a reply bot that responds across the channels connected to a HubSpot inbox. The API exposes channels and channel accounts, and POST to a thread's messages endpoint sends a reply on the appropriate channel automatically based on the thread's origin.

On a webhook for a new thread, GET /conversations/v3/conversations/threads/{threadId}, generate a reply, and POST /conversations/v3/conversations/threads/{threadId}/messages.

Agent-Driven Inbox Operations

Wire a HubSpot inbox into an AI agent through Jentic so the agent can read threads, send replies, and archive resolved conversations. Jentic isolates the HubSpot OAuth token from the agent's reasoning context and exposes each operation by intent rather than by URL.

Use Jentic search 'send a reply into a HubSpot conversation thread', load the schema for POST /conversations/v3/conversations/threads/{threadId}/messages, and execute with the threadId and reply text.

Key Endpoints

16 endpoints — the hubspot conversations inbox & messages api exposes the shared inbox model that backs hubspot service hub conversations.

METHOD

PATH

DESCRIPTION

GET

/conversations/v3/conversations/inboxes

List conversations inboxes

GET

/conversations/v3/conversations/threads

List threads

GET

/conversations/v3/conversations/threads/{threadId}

Get a single thread

PATCH

/conversations/v3/conversations/threads/{threadId}

Update a thread

GET

/conversations/v3/conversations/threads/{threadId}/messages

Get message history for a thread

POST

/conversations/v3/conversations/threads/{threadId}/messages

Send a message to a thread

DELETE

/conversations/v3/conversations/threads/{threadId}

Archive a thread

GET

/conversations/v3/conversations/inboxes

List conversations inboxes

GET

/conversations/v3/conversations/threads

List threads

GET

/conversations/v3/conversations/threads/{threadId}

Get a single thread

PATCH

/conversations/v3/conversations/threads/{threadId}

Update a thread

GET

/conversations/v3/conversations/threads/{threadId}/messages

Get message history for a thread

POST

/conversations/v3/conversations/threads/{threadId}/messages

Send a message to a thread

DELETE

/conversations/v3/conversations/threads/{threadId}

Archive a thread

Why Jentic?

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

Credential management

Credential isolation

HubSpot OAuth and private app tokens for the Conversations API are stored encrypted in the Jentic vault. The agent receives a scoped execution token; the raw credential never enters its prompt context.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'send a HubSpot message' or 'list HubSpot inbox threads' and Jentic returns the right Conversations operation with its input schema, ready to call.

Time to first call

Time to first call

Direct integration including OAuth, pagination, and channel routing typically takes 2-3 days. Through Jentic: under 1 hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

HubSpot Conversations Custom Channels

→

Register and manage custom channels feeding into HubSpot inboxes.

Pick Conversations-customChannels when the agent needs to wire a non-native channel into HubSpot before reading or replying via the Inbox API.

Complementary

HubSpot Visitor Identification

→

Identify authenticated visitors before they post into a thread.

Use Conversations-visitorIdentification when the agent needs to attach an authenticated identity to chat threads created on the website.

Complementary

HubSpot CRM Contacts

→

Resolve a thread's actor to a CRM contact record.

Choose CRM-contacts when the agent needs full CRM context for the person on the other side of a conversation.

FAQs

Specific to using Conversations Inbox & Messages API through Jentic.

What authentication does the HubSpot Conversations Inbox & Messages API use?

OAuth 2.0 authorization code flow or a private app token in the `private-app-legacy` header. Jentic stores the credential encrypted and exposes only a scoped execution token to the agent.

Can I send a reply into an existing thread with this API?

Yes. POST /conversations/v3/conversations/threads/{threadId}/messages sends a message into the thread, routed automatically through the channel the thread originated on.

What are the rate limits for the Conversations API?

Standard HubSpot API limits apply — roughly 100 requests per 10 seconds per OAuth app and daily caps on paid tiers. For high-volume inbox polling, prefer webhooks and pull thread detail only when an event arrives.

How do I summarise a thread through Jentic?

Search Jentic for `get HubSpot thread messages`, load the schema for GET /conversations/v3/conversations/threads/{threadId}/messages, execute, and feed the message bodies into your LLM. Install with `pip install jentic` and authenticate using `JENTIC_AGENT_API_KEY`.

Does the API expose the original content of an email message in a thread?

Yes. GET /conversations/v3/conversations/threads/{threadId}/messages/{messageId}/original-content returns the raw original message content, useful for archival or for showing full email source to a reviewer.

GET STARTED

Start building with Conversations Inbox & Messages API

Explore with Jentic
View OpenAPI Document