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 / Payments / Hubspot / Commerce Payments
Commerce Payments logo

HubSpot Commerce Payments

Browse all Hubspot APIs
✓ Official Vendor SpecPaymentsPayment Processingoauth2,apiKey11 EndpointsREST

For Agents

Create, read, update, archive, search, and upsert HubSpot Commerce payment records, mirroring captured payments from a processor into the CRM ledger.

Use for: I need to record a captured payment in HubSpot Commerce, Retrieve a commerce payment record by its CRM ID, Search for payments above a threshold in the last 30 days, Update a payment record with the refund amount

Not supported: Does not capture, refund, or settle payments at a processor — use only for managing HubSpot CRM payment records that mirror processor activity.

The HubSpot Commerce Payments API exposes payment records inside HubSpot Commerce, representing captured payments that can be associated with contacts, deals, and invoices. It follows the standard CRM v3 object pattern with batch read, create, update, archive, search, and upsert operations against the commerce_payments object. Records carry properties such as amount, currency, payment method, processor, and reference id, providing a CRM-side ledger that mirrors the payments captured by your processor.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Commerce Payments to your agent

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

Record captured payments with amount, currency, method, and processor reference properties

Batch upsert payments by an external processor reference id to avoid duplicates from retried webhooks

Search payments by date, amount range, contact, or deal using filter groups

Retrieve a payment record with associated contacts, deals, and invoices in one call

Update payment properties (status, refund amount, processor metadata) after capture

Archive payment records in batch when removing from active CRM views

Page through all payment records for export or accounting reconciliation

Use Cases

Patterns agents use Commerce Payments API for, with concrete tasks.

★ Processor Payment Mirror

Mirror captured payments from a processor like Stripe or Adyen into HubSpot so the CRM has a record of every payment alongside the contact and deal. Batch upsert by the processor's charge id ensures retried webhooks do not duplicate records, even at high volume.

POST 100 payment payloads to /crm/v3/objects/commerce_payments/batch/upsert with idProperty set to processor_charge_id and the deal association id.

Refund Recording

When a refund is issued by the processor, update the corresponding payment record with the refund amount and date so the CRM ledger remains accurate. Search by processor charge id to find the right record before the update.

Search /crm/v3/objects/commerce_payments/search by processor_charge_id, then PATCH the matching record with hs_refund_amount and hs_refund_date.

Revenue Reporting

Generate a CRM-side revenue report by searching commerce payments filtered by date and currency, summing hs_amount per deal owner. The search endpoint supports paging and property selection so the report is efficient.

Search /crm/v3/objects/commerce_payments/search with filterGroups on hs_payment_date in the last 30 days and currency = USD, returning hs_amount and ownerId.

AI Agent Payment Reconciliation

An AI agent reconciles processor exports against HubSpot commerce payments daily, surfacing missing or mismatched records to a human reviewer. Jentic exposes the search and upsert operations with typed schemas, so the agent can detect gaps and create missing records without doc lookup.

Diff yesterday's processor charges against /crm/v3/objects/commerce_payments/search results; for each missing charge, upsert via /batch/upsert with idProperty = processor_charge_id.

Key Endpoints

11 endpoints — the hubspot commerce payments api exposes payment records inside hubspot commerce, representing captured payments that can be associated with contacts, deals, and invoices.

METHOD

PATH

DESCRIPTION

POST

/crm/v3/objects/commerce_payments/batch/create

Create payment records in batch

POST

/crm/v3/objects/commerce_payments/batch/upsert

Idempotent upsert by external id

POST

/crm/v3/objects/commerce_payments/batch/read

Read payments in batch by ID

POST

/crm/v3/objects/commerce_payments/batch/update

Update payment properties in batch

POST

/crm/v3/objects/commerce_payments/search

Search payments by filter groups

GET

/crm/v3/objects/commerce_payments/{commercePaymentId}

Retrieve a single payment

GET

/crm/v3/objects/commerce_payments

List payments with pagination

POST

/crm/v3/objects/commerce_payments/batch/create

Create payment records in batch

POST

/crm/v3/objects/commerce_payments/batch/upsert

Idempotent upsert by external id

POST

/crm/v3/objects/commerce_payments/batch/read

Read payments in batch by ID

POST

/crm/v3/objects/commerce_payments/batch/update

Update payment properties in batch

POST

/crm/v3/objects/commerce_payments/search

Search payments by filter groups

GET

/crm/v3/objects/commerce_payments/{commercePaymentId}

Retrieve a single payment

GET

/crm/v3/objects/commerce_payments

List payments with pagination

Why Jentic?

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

Credential management

Credential isolation

HubSpot OAuth and private app tokens are encrypted in the Jentic vault. Scoped tokens are injected at execution — raw credentials never appear in agent prompts or logs.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent (e.g. 'record a payment in hubspot') and Jentic returns the matching commerce_payments operation with its typed input schema, so the agent calls the right endpoint without doc lookup.

Time to first call

Time to first call

Direct integration: 2-3 days for OAuth, idempotent upsert against processor webhooks, and association handling. Through Jentic: under 1 hour — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

Commerce Subscriptions

→

Manages recurring subscription records that drive recurring payment events.

Use Subscriptions when the agent is mirroring recurring billing rather than one-off captured payments.

Complementary

Invoices

→

Tracks invoice records that payments are commonly applied to.

Use Invoices alongside payments when the agent needs to mark an invoice as paid after recording the payment.

Alternative

Stripe

Stripe processes payments directly; HubSpot Commerce Payments is the CRM-side mirror.

Choose Stripe when the agent must capture or refund a payment at the processor; choose HubSpot Commerce Payments to mirror that event into CRM.

FAQs

Specific to using Commerce Payments API through Jentic.

What authentication does the HubSpot Commerce Payments API use?

It supports OAuth 2.0 and HubSpot private app tokens. Through Jentic, tokens are stored encrypted in the vault and scoped tokens are injected at execution time, so the raw credential never enters the agent's context.

Can I record refunds with the HubSpot Commerce Payments API?

Yes. Update the payment record with hs_refund_amount and hs_refund_date via PATCH /crm/v3/objects/commerce_payments/{commercePaymentId}. The Commerce Payments API does not initiate refunds at the processor — issue the refund through your processor first, then update the HubSpot record.

What are the rate limits for the HubSpot Commerce Payments API?

Standard CRM v3 limits apply — 100 requests per 10 seconds for OAuth apps and 110 per 10 seconds for private apps. Use the batch upsert endpoint (up to 100 records per call) when mirroring high-volume processor activity.

How do I upsert payments through Jentic?

Run the Jentic search "upsert hubspot commerce payment" to find POST /crm/v3/objects/commerce_payments/batch/upsert, load the schema, and execute with idProperty set to your processor's charge id. Jentic handles authentication.

Is the HubSpot Commerce Payments API free?

Access requires HubSpot Commerce Hub. There is no per-call HubSpot fee on top of the Commerce subscription, but processor fees from your payment provider apply separately.

Can I associate a payment with a deal and an invoice?

Yes — pass an associations array on create, or use the CRM Associations API afterwards, to link a single payment to a deal, invoice, and contact. The single-record GET supports an associations parameter to return linked IDs in one call.

GET STARTED

Start building with Commerce Payments API

Explore with Jentic
View OpenAPI Document