Modules@robinpath/hubspot
@robinpath/hubspot
0.1.0PublicHubSpot module for RobinPath.
@robinpath/hubspot
HubSpot module for RobinPath.
Why use this module?
The hubspot module lets you:
- Create a new contact in HubSpot.
- Get a contact by ID.
- Update a contact's properties.
- List contacts with pagination.
- Search contacts by query string.
All functions are callable directly from RobinPath scripts with a simple, consistent API.
Installation
npm install @robinpath/hubspot
Quick Start
1. Set up credentials
hubspot.setToken "pat-xxx"
2. Create a new contact in HubSpot.
hubspot.createContact {"email":"john@example.com","firstname":"John","lastname":"Doe"}
Available Functions
| Function | Description |
|---|---|
hubspot.setToken | Set the HubSpot private app access token. |
hubspot.createContact | Create a new contact in HubSpot. |
hubspot.getContact | Get a contact by ID. |
hubspot.updateContact | Update a contact's properties. |
hubspot.listContacts | List contacts with pagination. |
hubspot.searchContacts | Search contacts by query string. |
hubspot.createDeal | Create a new deal in HubSpot. |
hubspot.getDeal | Get a deal by ID. |
hubspot.updateDeal | Update a deal's properties. |
hubspot.listDeals | List deals with pagination. |
hubspot.createCompany | Create a new company in HubSpot. |
hubspot.getCompany | Get a company by ID. |
Examples
Create a new contact in HubSpot.
hubspot.createContact {"email":"john@example.com","firstname":"John","lastname":"Doe"}
Get a contact by ID.
hubspot.getContact "123"
Update a contact's properties.
hubspot.updateContact "123" {"phone":"+1234567890"}
Integration with RobinPath
import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/hubspot";
const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);
const result = await rp.executeScript(`
hubspot.setToken "pat-xxx"
hubspot.createContact {"email":"john@example.com","firstname":"John","lastname":"Doe"}
`);
Full API Reference
See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.
Related Modules
@robinpath/salesforce— Salesforce module for complementary functionality@robinpath/pipedrive— Pipedrive module for complementary functionality@robinpath/freshdesk— Freshdesk module for complementary functionality@robinpath/intercom— Intercom module for complementary functionality@robinpath/zoho— Zoho module for complementary functionality
License
MIT
Versions (1)
| Version | Tag | Published |
|---|---|---|
| 0.1.0 | latest | yesterday |
Related Modules
sales
0
@robinpath/bigcommerce
v0.1.1robinpath
BigCommerce module for RobinPath.
0 downloads
...
sales
0
@robinpath/freshbooks
v0.1.0robinpath
FreshBooks module for RobinPath.
0 downloads
...
sales
0
@robinpath/freshdesk
v0.1.0robinpath
Freshdesk module for RobinPath.
0 downloads
...
sales
0
@robinpath/intercom
v0.1.0robinpath
Intercom module for RobinPath.
0 downloads
...
Install
$ robinpath install @robinpath/hubspot Version0.1.0
LicenseMIT
Unpacked Size5.1 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

