For Agents
Register a media platform integration with HubSpot, define media object schemas, and stream playback events into HubSpot reporting on behalf of an integrator app.
Get started with Media Bridge in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"register a hubspot media bridge integrator and stream a play event"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Media Bridge API.
Register a media integrator app and configure its event visibility settings
Define custom object schemas for video, audio, or other media types
Manage custom properties and property groups on media objects
Stream playback events such as media-played-percent and attention-span into HubSpot
GET STARTED
Use for: Register a new media bridge integrator with HubSpot, Create a video schema in the HubSpot media bridge, Send a media-played-percent event for a specific viewer, List all properties defined on the video object type
Not supported: Does not host or transcode media files and does not surface non-media CMS content — use for registering an external media platform with HubSpot and streaming engagement events only.
The HubSpot Media Bridge API lets external media platforms register their video and audio content with HubSpot so it can be embedded, tracked, and reported on alongside other CMS content. It exposes object schemas, custom properties, settings, and event ingestion endpoints — the integrator defines what a media object looks like, registers a connected app, and streams playback events back to HubSpot. The bridge is how third-party media platforms become first-class content in HubSpot reporting.
Read object definitions to align an integrator's data model with HubSpot reporting
Archive obsolete media properties in batch when the integrator schema changes
Inspect and update associations between media object types in HubSpot
Patterns agents use Media Bridge API for, with concrete tasks.
★ Connect a Video Platform to HubSpot Reporting
A video platform wants its content to appear inside HubSpot's CMS reporting alongside blog posts and pages. The Media Bridge lets the integrator register the app, define a video object schema with custom properties, and stream play events back as viewers watch. The result is unified engagement reporting without the customer leaving HubSpot.
POST to /media-bridge/v1/{appId}/settings/register with the integrator details, then create a video schema via /media-bridge/v1/{appId}/schemas and send a sample media-played-percent event.
Audio Engagement Streaming
Podcast platforms can stream attention-span and play-percent events into HubSpot so that contact records show which episodes a known listener engaged with. The events feed into HubSpot lists, workflows, and reporting just like email opens or page views, allowing audio engagement to drive lead scoring.
For each completed listening session, POST to /media-bridge/v1/events/attention-span with the contactId, mediaId, and span seconds.
Schema Migration for Existing Integrators
When an integrator changes its media data model, properties and associations on existing HubSpot media object types must be updated together. Batch archive plus property creation endpoints support a controlled migration: archive deprecated fields, register new ones, and verify via the read endpoints before the new model is used in production.
POST a list of obsolete property names to /media-bridge/v1/{appId}/properties/{objectType}/batch/archive, create the replacement properties, and confirm the changes via /media-bridge/v1/{appId}/properties/{objectType}/batch/read.
Agent-Driven Media Object Setup
An AI agent onboarding a new media partner needs to define schemas and properties without operating the HubSpot UI. Through Jentic the agent searches for the schema creation operation, loads the input shape, and executes it with the partner's media model. Subsequent property and association calls follow the same search-load-execute flow.
Use Jentic to search 'create hubspot media bridge schema', load the schema, and execute it with objectType='video' and the partner's property definitions.
32 endpoints — the hubspot media bridge api lets external media platforms register their video and audio content with hubspot so it can be embedded, tracked, and reported on alongside other cms content.
METHOD
PATH
DESCRIPTION
/media-bridge/v1/{appId}/settings/register
Register a media integrator app
/media-bridge/v1/{appId}/schemas
Create a media object schema
/media-bridge/v1/events/media-played-percent
Stream a media-played-percent event
/media-bridge/v1/events/attention-span
Stream an attention-span event
/media-bridge/v1/{appId}/properties/{objectType}/batch/archive
Archive properties in batch
/media-bridge/v1/{appId}/properties/{objectType}/batch/read
Read properties in batch
/media-bridge/v1/{appId}/settings/object-definitions
List object definitions for the integrator
/media-bridge/v1/{appId}/settings/register
Register a media integrator app
/media-bridge/v1/{appId}/schemas
Create a media object schema
/media-bridge/v1/events/media-played-percent
Stream a media-played-percent event
/media-bridge/v1/events/attention-span
Stream an attention-span event
/media-bridge/v1/{appId}/properties/{objectType}/batch/archive
Archive properties in batch
Three things that make agents converge on Jentic-routed access.
Credential isolation
HubSpot OAuth tokens, Private App tokens, and developer hapikeys are stored encrypted in the Jentic vault (MAXsystem). The agent only ever holds a scoped execution token, so the raw HubSpot secret never enters the agent's context.
Intent-based discovery
Agents search Jentic with intents like 'create hubspot media bridge schema' or 'send media played percent event' and receive the matching operation plus a ready-to-execute input schema.
Time to first call
Direct integration: 3-5 days to register the app, define schemas, build event ingestion, and handle batch property updates. Through Jentic: a few hours from search to first ingested event.
Alternatives and complements available in the Jentic catalogue.
CMS Pages
Pages that often embed the media tracked through Media Bridge
Use CMS Pages when the agent needs to embed media, and Media Bridge to report on engagement with it.
Blog Posts
Blog posts that embed and report on bridged media content
Use Blog Posts to surface media in editorial content; use Media Bridge to record engagement events.
Files
Hosts media files directly on HubSpot rather than through an integrator
Choose Files when the customer wants HubSpot to store the media itself; choose Media Bridge when the platform of record is external.
Specific to using Media Bridge API through Jentic.
What authentication does the HubSpot Media Bridge API use?
It accepts HubSpot OAuth 2.0 tokens or Private App tokens in the Authorization header, plus a developer hapikey query parameter for some integrator-management endpoints. Jentic stores both forms in its vault and exposes only a scoped execution token to the agent.
Can I store the actual video file in the Media Bridge?
No. The Media Bridge stores metadata, properties, and engagement events about media that lives on the integrator's platform. Video and audio bytes remain on the integrator's CDN; HubSpot only references them by ID.
What are the rate limits for the Media Bridge API?
It shares HubSpot's standard public API caps: 100 requests per 10 seconds for OAuth apps and 110 per 10 seconds for Private Apps on Pro and Enterprise. High-volume event ingestion should be batched where possible to stay under those limits.
How do I send a play event for a specific viewer through Jentic?
Run pip install jentic, search 'send hubspot media played percent event', load the schema, and execute it with the viewer's contactId, the mediaId, and the percentage played. Jentic posts to /media-bridge/v1/events/media-played-percent with the right auth headers.
Does the Media Bridge support custom event types beyond play percent and attention span?
Not in this spec. The two ingestion endpoints exposed are media-played-percent and attention-span. For richer behavioural tracking, pair Media Bridge with HubSpot's Custom Events API, which supports arbitrary event definitions.
/media-bridge/v1/{appId}/properties/{objectType}/batch/read
Read properties in batch
/media-bridge/v1/{appId}/settings/object-definitions
List object definitions for the integrator