You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
Copy file name to clipboardexpand all lines: README.md
+74-31
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,9 @@
4
4
5
5
A wrapper for the HubSpot API based on Node - http://developers.hubspot.com/docs/overview
6
6
7
+
## Version 1.0
8
+
First stable release is now available [here](https://github.com/hmschreiner/node-hubspot-api/releases/tag/v1.0.0).
9
+
7
10
## Installation
8
11
9
12
`npm install node-hubspot-api --save`
@@ -26,12 +29,12 @@ const api = new NodeHubSpotApi('your_api_key')
26
29
#### - Get all contacts
27
30
Return all contacts that have been created. A paginated list of contacts will be returned with a maximum of 100 contacts per page.
28
31
29
-
Parameter | Description | Required | Default
30
-
--------- | ----------- | :------: | :-----:
31
-
**count** | Specify the amount of contacts to return. | No | 20
32
-
**vidOffset** | Used to page through the contacts. | No | -
33
-
**property** | By default, only a few standard properties will be included in the response data. Include the 'property' parameter to get the specified property in the response. | No | -
34
-
**showListMemberships** | Indicate whether current list memberships should be fetched for the contact. | No | false
32
+
|Parameter | Description | Required | Default|
33
+
|--------- | ----------- | :------: | :-----:|
34
+
|**count**| Specify the amount of contacts to return. | No | 20|
35
+
|**vidOffset**| Used to page through the contacts. | No | -|
36
+
|**property**| By default, only a few standard properties will be included in the response data. Include the 'property' parameter to get the specified property in the response. | No | -|
37
+
|**showListMemberships**| Indicate whether current list memberships should be fetched for the contact. | No | false|
List all of the blogs for a portal. Supports paging and filtering.
142
145
143
-
Parameter | Description | Required | Default
144
-
--------- | ----------- | :------: | :-----:
145
-
**limit** | The number of items to return. | No | 20
146
-
**offset** | The offset set to start returning rows from. | No | 0
147
-
**created** | exact, range, gt, gte, lt, lte - When the post was first created, in milliseconds since the epoch. | No | -
148
-
**deleted_at** | exact, gt, gte - When the post was deleted, in milliseconds since the epoch. Zero if the blog post was never deleted. | No | -
149
-
**name** | exact, in - The internal name of the blog | No | -
146
+
|Parameter | Description | Required | Default|
147
+
|--------- | ----------- | :------: | :-----:|
148
+
|**limit**| The number of items to return. | No | 20|
149
+
| **offset** | The offset set to start returning rows from. | No | 0
150
+
|**created**| exact, range, gt, gte, lt, lte - When the post was first created, in milliseconds since the epoch. | No | -|
151
+
|**deleted_at**| exact, gt, gte - When the post was deleted, in milliseconds since the epoch. Zero if the blog post was never deleted. | No | -|
152
+
|**name**| exact, in - The internal name of the blog | No | -|
150
153
151
154
**Usage:**
152
155
```javascript
@@ -166,21 +169,21 @@ api.blog.getAllBlogs({
166
169
#### - List blog posts
167
170
Get the posts from your blogs.
168
171
169
-
Parameter | Description | Required | Default
170
-
--------- | ----------- | :------: | :-----:
171
-
**limit** | The number of items to return. | No | 20
172
-
**offset** | The offset set to start returning rows from. | No | 0
173
-
**archived** | Returns the posts that match the boolean lookup (e.g. archived=false returns all posts currently not archived). | No | false
174
-
**blog_author_id** | Returns the posts that match a particular blog author ID value. | No | -
175
-
**campaign** | Returns the posts that match the campaign guid. | No | -
176
-
**content_group_id** | Returns the posts that match the blog guid. The blog guid can be found in the blog dashboard URL (e.g. https://app.hubspot.com/blog/:portal_id/dashboard/:blog_guid). | No | -
177
-
**created** | Returns the posts that match a particular created time value. Supports exact, range, gt, gte, lt, lte lookups. | No | -
178
-
**deleted_at** | Returns the posts that match a particular deleted time value. Supports exact, gt, gte, lt, lte lookups. | No | -
179
-
**name** | Returns the posts that match the name value. Supports exact, contains, icontains, ne lookups. | No | -
180
-
**slug** | Returns the posts that match a particular slug value. | No | -
181
-
**updated** | Returns the posts that match a particular updated time. Supports exact, range, gt, gte, lt, lte lookups. | No | -
182
-
**state** | DRAFT, PUBLISHED, or SCHEDULED. | No | PUBLISHED
183
-
**order_by** | Return the posts ordered by a particular field value. Blog posts can currently only be sorted by publish_date. Use a negative value to sort in descending order (e.g. order_by=-publish_date). | No | publish_date
172
+
|Parameter | Description | Required | Default|
173
+
|--------- | ----------- | :------: | :-----:|
174
+
|**limit**| The number of items to return. | No | 20|
175
+
|**offset**| The offset set to start returning rows from. | No | 0|
176
+
|**archived**| Returns the posts that match the boolean lookup (e.g. archived=false returns all posts currently not archived). | No | false|
177
+
|**blog_author_id**| Returns the posts that match a particular blog author ID value. | No | -|
178
+
|**campaign**| Returns the posts that match the campaign guid. | No | -|
179
+
|**content_group_id**| Returns the posts that match the blog guid. The blog guid can be found in the blog dashboard URL (e.g. https://app.hubspot.com/blog/:portal_id/dashboard/:blog_guid).| No | -|
180
+
|**created**| Returns the posts that match a particular created time value. Supports exact, range, gt, gte, lt, lte lookups. | No | -|
181
+
|**deleted_at**| Returns the posts that match a particular deleted time value. Supports exact, gt, gte, lt, lte lookups. | No | -|
182
+
|**name**| Returns the posts that match the name value. Supports exact, contains, icontains, ne lookups. | No | -|
183
+
| **slug** | Returns the posts that match a particular slug value. | No | -
184
+
|**updated**| Returns the posts that match a particular updated time. Supports exact, range, gt, gte, lt, lte lookups. | No | -|
185
+
|**state**| DRAFT, PUBLISHED, or SCHEDULED. | No | PUBLISHED|
186
+
|**order_by**| Return the posts ordered by a particular field value. Blog posts can currently only be sorted by publish_date. Use a negative value to sort in descending order (e.g. order_by=-publish_date). | No | publish_date|
This tool is under development and don't have a stable version yet.
223
+
### Deals
224
+
225
+
#### - Create a deal
226
+
This methods creates a deal on HubSpot. You can create associations between Deals and Contacts and Companies but it's not required.
227
+
228
+
The **dealstage** property is required when creating a deal. If the **pipeline** property is not specified, the default pipeline is assumed. However, it is recommended to always specify the pipeline, especially on portals with multiple pipelines.
229
+
230
+
Returns a 200 on success with the data for the newly created deal in the response.
222
231
223
-
*DO NOT USE IT IN PRODUCTION!*
232
+
You must pass an object to the method with these parameters:
233
+
234
+
| Parameter | Description |
235
+
| --------- | ----------- |
236
+
| Associated records |`"associations": {}` - A set of IDs for records that the new deal should be associated with. Deals can be associated with a single company (associatedCompanyIds) and any number of contacts (associatedVids). |
237
+
| Deal properties |`"properties": []` - A list of property names, and the value you want to set for the property. |
0 commit comments