For Agents
Read, create, update, archive, and search HubSpot bucket_test111 CRM records via the standard CRM v3 objects pattern, including batch operations and filtered search.
Get started with Bucket_Test111 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:
"create a hubspot bucket record"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Bucket_Test111 API.
Read bucket_test111 records in batches by record ID using POST /crm/v3/objects/bucket_test111s/batch/read
Create new bucket_test111 records individually or in batches with property maps
Update existing bucket_test111 records by ID using PATCH operations
Archive bucket_test111 records in batch to remove them from active CRM views
GET STARTED
Use for: I need to create a new bucket_test111 record in HubSpot, Retrieve a bucket_test111 record by its CRM object ID, Search for bucket_test111 records matching a property filter, List all bucket_test111 records modified after a given date
Not supported: Does not handle deals, tickets, or marketing email — use for the bucket_test111 custom CRM object only.
The HubSpot Bucket_Test111 API exposes a custom CRM object type used internally by HubSpot for bucket-style record collections. It provides full CRUD plus search and batch operations against the bucket_test111s object set within the standard CRM v3 object model. Records can be created, archived, merged with other CRM data, and queried alongside contacts, companies, and deals using the same association graph.
Search bucket_test111 records with filter groups, sorts, and property selection
Page through the full list of bucket_test111 records with cursor-based pagination
Retrieve a single bucket_test111 record by ID with selected associated objects
Patterns agents use Bucket_Test111 API for, with concrete tasks.
★ Custom Bucket Record Sync
Sync bucket_test111 records between HubSpot CRM and an internal warehouse so analytics tooling can join bucket data with contacts and companies. The batch read and batch upsert endpoints handle up to 100 records per request, keeping sync jobs efficient even at scale.
Call POST /crm/v3/objects/bucket_test111s/batch/read with a list of 50 record IDs and write the returned property maps to the warehouse staging table.
Bulk Record Cleanup
Identify stale bucket_test111 records using the search endpoint with a lastmodifieddate filter, then archive them in batch. Useful for routine CRM hygiene where bucket records older than a threshold should be removed from active views without permanent deletion.
Search bucket_test111 records where hs_lastmodifieddate is older than 365 days, then POST the resulting IDs to /crm/v3/objects/bucket_test111s/batch/archive.
Property-Based Lookup
Look up specific bucket_test111 records by a custom property value rather than internal ID using the search endpoint with filter groups. This pattern supports lookups by external system ID, status, or any indexed custom property exposed on the bucket object schema.
POST a search to /crm/v3/objects/bucket_test111s/search with filterGroups for external_id equals "EXT-12345" and return the matching record ID.
AI Agent CRM Custom Object Workflow
An AI agent uses Jentic to discover and call HubSpot bucket_test111 endpoints without browsing developer docs. The agent searches Jentic for the bucket operation it needs, loads the input schema, and executes the call with credentials handled by the Jentic vault.
Use Jentic search for "create a hubspot custom bucket record", load the schema for the create operation, and execute it with property values from the upstream task.
10 endpoints — the hubspot bucket_test111 api exposes a custom crm object type used internally by hubspot for bucket-style record collections.
METHOD
PATH
DESCRIPTION
/crm/v3/objects/bucket_test111s/batch/read
Read bucket_test111 records in batch by ID
/crm/v3/objects/bucket_test111s/batch/create
Create bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/batch/update
Update bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/batch/archive
Archive bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/search
Filter, sort, and search bucket_test111 records
/crm/v3/objects/bucket_test111s/{bucketTest111Id}
Retrieve a single bucket_test111 record
/crm/v3/objects/bucket_test111s
List bucket_test111 records with pagination
/crm/v3/objects/bucket_test111s/batch/read
Read bucket_test111 records in batch by ID
/crm/v3/objects/bucket_test111s/batch/create
Create bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/batch/update
Update bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/batch/archive
Archive bucket_test111 records in batch
/crm/v3/objects/bucket_test111s/search
Filter, sort, and search bucket_test111 records
Three things that make agents converge on Jentic-routed access.
Credential isolation
HubSpot OAuth tokens and private app tokens are stored encrypted in the Jentic vault. Agents receive scoped, short-lived access at execution time — raw tokens never enter the agent's context or logs.
Intent-based discovery
Agents search Jentic by intent (e.g. 'create a hubspot bucket record') and Jentic returns the matching bucket_test111 operation with its input schema, so the agent can call the right endpoint without scanning HubSpot docs.
Time to first call
Direct HubSpot integration: 1-3 days for OAuth setup, scope review, and batch error handling. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
CRM Custom Objects
Define and manage custom object schemas that bucket-style records like bucket_test111 are built on.
Use this when the agent needs to inspect or modify the custom object schema (properties, associations) rather than the records themselves.
Contacts
Standard CRM contacts object — commonly associated with custom bucket records.
Use alongside bucket_test111 when the agent needs to link a bucket record to a person and pull contact properties in the same workflow.
Salesforce
Salesforce custom objects offer the same custom-record pattern at enterprise scale.
Choose Salesforce when the host organisation already standardises on Salesforce custom objects rather than HubSpot CRM.
Specific to using Bucket_Test111 API through Jentic.
What authentication does the HubSpot Bucket_Test111 API use?
The Bucket_Test111 API supports OAuth 2.0 (oauth2 and oauth2_legacy) and HubSpot private app tokens passed as bearer tokens. Through Jentic, credentials are stored in the Jentic vault and scoped tokens are injected at execution time so the raw token never enters the agent context.
Can I batch update bucket_test111 records with the HubSpot Bucket_Test111 API?
Yes. POST to /crm/v3/objects/bucket_test111s/batch/update with up to 100 inputs per request, where each input contains the record id and a properties map. The response returns each updated record or per-record errors.
What are the rate limits for the HubSpot Bucket_Test111 API?
HubSpot enforces account-wide CRM API limits — typically 100 requests per 10 seconds for OAuth apps and 110 per 10 seconds for private apps on Pro and Enterprise. Batch endpoints count as a single request, so prefer batch read and batch update over per-record loops.
How do I search bucket_test111 records through Jentic?
Run the Jentic search query "search hubspot bucket records" to locate the operation backed by POST /crm/v3/objects/bucket_test111s/search, load its input schema, then execute with a filterGroups payload. No manual auth wiring is required.
Is the HubSpot Bucket_Test111 API free to use?
Access is included in any HubSpot account that has the bucket_test111 object enabled, but custom object support generally requires Enterprise tier. There is no separate per-call fee from HubSpot for these endpoints.
Can I associate bucket_test111 records with contacts or companies?
Yes — pass an associations array on create or use the CRM Associations API to link bucket_test111 records to contacts, companies, or deals. The single-record GET supports an associations query parameter to return linked object IDs in one call.
/crm/v3/objects/bucket_test111s/{bucketTest111Id}
Retrieve a single bucket_test111 record
/crm/v3/objects/bucket_test111s
List bucket_test111 records with pagination