DocsIntegrationsHubSpot

HubSpot

Connect with HubSpot for marketing and sales automation.

The HubSpot integration enables your agents to manage contacts, deals, and trigger marketing workflows.

Setup

  • Go to Settings → Integrations → HubSpot
  • Click 'Connect HubSpot'
  • Log in to your HubSpot account
  • Grant required permissions

Available Features

  • Contact Management
  • Deal Pipeline Automation
  • Email Sequences
  • Form Submissions
  • Custom Properties

Example Usage

javascript
// Create a contact
await agent.tools.hubspot.createContact({
  email: 'john@example.com',
  firstName: 'John',
  lastName: 'Doe',
  company: 'Acme Inc'
});

// Add to a workflow
await agent.tools.hubspot.enrollInWorkflow(
  contactId,
  workflowId
);