Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

API 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 WorksAPI 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 / CRM / Hubspot / Properties
Properties logo

HubSpot Properties

Browse all Hubspot APIs
✓ Official Vendor SpecCRMContact Managementoauth2,apiKey13 EndpointsREST

For Agents

Manage the field schema for any HubSpot CRM object — create, read, update, archive, and group custom and standard properties.

Use for: I need to add a custom enumeration property to the contacts object, List all properties defined on the deals object, Read the definition of a specific contact property, Update the options on an enumeration property

Not supported: Does not read or write property values on records, run validation, or manage permissions — use for HubSpot CRM property schema and groups only.

The HubSpot CRM Properties API manages the schema layer that sits behind every CRM object — the named fields stored on contacts, companies, deals, tickets, and custom objects. It exposes endpoints to create, read, update, and archive properties for any object type, organise them into property groups, and run batch read or archive operations. Use it to bootstrap the custom fields a portal needs, keep the field schema in sync with another system of record, document the field model for compliance reviews, and clean up unused properties after a redesign. Read access works without write scopes, so agents that only need to introspect the schema can stay scoped down.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Properties to your agent

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

Create a custom property on a CRM object type with a chosen field type and options

Read a single property's full definition by name

Update a property's label, description, options, or display order

Archive a property from a CRM object type

List all property groups for an object type and create new ones

Batch read or batch archive up to 100 properties per call

Use Cases

Patterns agents use Properties API for, with concrete tasks.

★ Bootstrap a portal's custom fields

When onboarding a new HubSpot portal, create the custom properties the team needs in a single scripted run. POST /crm/v3/properties/{objectType} creates each property with its field type, label, and options, and PATCH /crm/v3/properties/{objectType}/groups/{groupName} keeps property groups in shape. The result is a portal with a known field model rather than ad hoc clicks in the UI.

POST /crm/v3/properties/contacts with name=lead_score, label='Lead Score', type=number, fieldType=number to create the property.

Schema drift detection

Compare a portal's live property model against an expected schema definition. List the properties on each object type, diff against a JSON definition stored in source control, and surface drift for review. Useful for governance teams that need to keep multiple portals aligned.

GET /crm/v3/properties/contacts to list every property on the contacts object and compare each name against the canonical schema.

Property cleanup after a redesign

Archive properties that are no longer in use after a CRM redesign. POST /crm/v3/properties/{objectType}/batch/archive accepts up to 100 property names per call. Pair with a pre-flight read to confirm no workflows depend on each property before archiving.

POST /crm/v3/properties/deals/batch/archive with the names of 30 deprecated properties.

AI agent execution through Jentic

An agent that needs to manage the schema discovers this API via Jentic's intent search using a query like 'create a hubspot custom property' or 'list hubspot contact properties', loads the input schema for the chosen operation, and executes the call with credentials supplied from the Jentic vault. The same flow handles batch read, group management, and archive.

Search Jentic for 'create a hubspot custom property', load POST /crm/v3/properties/{objectType}, and execute it for objectType=contacts with a property definition payload.

Key Endpoints

13 endpoints — the hubspot crm properties api manages the schema layer that sits behind every crm object — the named fields stored on contacts, companies, deals, tickets, and custom objects.

METHOD

PATH

DESCRIPTION

GET

/crm/v3/properties/{objectType}

List properties for an object type

POST

/crm/v3/properties/{objectType}

Create a property on an object type

GET

/crm/v3/properties/{objectType}/{propertyName}

Read a single property's definition

PATCH

/crm/v3/properties/{objectType}/{propertyName}

Update a property's label, options, or group

DELETE

/crm/v3/properties/{objectType}/{propertyName}

Archive a property from an object type

POST

/crm/v3/properties/{objectType}/batch/read

Read up to 100 properties in one call

POST

/crm/v3/properties/{objectType}/batch/archive

Archive up to 100 properties in one call

GET

/crm/v3/properties/{objectType}/groups/{groupName}

Read a property group definition

GET

/crm/v3/properties/{objectType}

List properties for an object type

POST

/crm/v3/properties/{objectType}

Create a property on an object type

GET

/crm/v3/properties/{objectType}/{propertyName}

Read a single property's definition

PATCH

/crm/v3/properties/{objectType}/{propertyName}

Update a property's label, options, or group

DELETE

/crm/v3/properties/{objectType}/{propertyName}

Archive a property from an object type

POST

/crm/v3/properties/{objectType}/batch/read

Read up to 100 properties in one call

POST

/crm/v3/properties/{objectType}/batch/archive

Archive up to 100 properties in one call

GET

/crm/v3/properties/{objectType}/groups/{groupName}

Read a property group definition

Why Jentic?

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

Credential management

Credential isolation

HubSpot OAuth and private app tokens live encrypted in the Jentic vault. Schema-write scopes are checked at execution time, and the Authorization header is attached server-side so the token never enters agent context.

Intent-based discovery

Intent-based discovery

Agents search by intent (e.g. 'create a hubspot custom property' or 'list hubspot properties') and Jentic returns the matching Properties operation with its JSON Schema, including the field-type and options structure.

Time to first call

Time to first call

Direct integration: half a day to wire OAuth, schema validation, and group management. Through Jentic: under 30 minutes — search, load schema, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

HubSpot CRM Property Validations

→

Reads the validation rules attached to properties managed here

Use after creating a property to inspect any validation rules HubSpot has applied to it.

Complementary

HubSpot CRM Custom Objects

→

Defines the custom object types whose properties this API then manages

Pick this when you need to create the object type itself before adding properties to it.

Complementary

HubSpot CRM Objects

→

Reads and writes the records that store values for the properties defined here

Use to populate values into the properties this API has defined.

FAQs

Specific to using Properties API through Jentic.

What authentication does the HubSpot Properties API use?

It accepts OAuth 2.0 access tokens and private app access tokens passed as a Bearer credential in the Authorization header. Schema write operations require scopes that match the target object type.

Can I create an enumeration property with custom options?

Yes. POST /crm/v3/properties/{objectType} with type=enumeration, fieldType=select (or radio/checkbox), and an options array specifying each option's label, value, and displayOrder.

What are the rate limits for the HubSpot Properties API?

It shares HubSpot's account-level rate limits, typically 100 requests per 10 seconds for OAuth apps. Schema changes are infrequent enough that the standard limits are rarely a concern.

How do I list every property on a HubSpot object through Jentic?

Search Jentic with 'list hubspot properties', load GET /crm/v3/properties/{objectType}, and execute it with the object type set to the resource you care about (contacts, companies, deals, tickets, or a custom object name).

Is the HubSpot Properties API free?

It is included with all HubSpot accounts that have CRM access enabled. There is no per-call fee; the standard account-level rate limits apply.

How do I move a property to a different group?

PATCH /crm/v3/properties/{objectType}/{propertyName} with a groupName field set to the new group's internal name. The property's display position then follows the order configured on the new group.

GET STARTED

Start building with Properties API

Explore with Jentic
View OpenAPI Document