Skip to content
This repository was archived by the owner on Oct 12, 2022. It is now read-only.

Commit 962d96d

Browse files
committed
Released version 1.0
1 parent ef1bd0d commit 962d96d

File tree

7 files changed

+192
-34
lines changed

7 files changed

+192
-34
lines changed

README.md

+74-31
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
A wrapper for the HubSpot API based on Node - http://developers.hubspot.com/docs/overview
66

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+
710
## Installation
811

912
`npm install node-hubspot-api --save`
@@ -26,12 +29,12 @@ const api = new NodeHubSpotApi('your_api_key')
2629
#### - Get all contacts
2730
Return all contacts that have been created. A paginated list of contacts will be returned with a maximum of 100 contacts per page.
2831

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 |
3538

3639
**Usage:**
3740
```javascript
@@ -140,13 +143,13 @@ https://developers.hubspot.com/docs/methods/contacts/create_or_update
140143
#### - Get all blogs
141144
List all of the blogs for a portal. Supports paging and filtering.
142145

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 | - |
150153

151154
**Usage:**
152155
```javascript
@@ -166,21 +169,21 @@ api.blog.getAllBlogs({
166169
#### - List blog posts
167170
Get the posts from your blogs.
168171

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 |
184187

185188
**Usage:**
186189
```javascript
@@ -217,7 +220,47 @@ api.blog.getPostById(3198892953)
217220
**Reference:**
218221
http://developers.hubspot.com/docs/methods/blogv2/get_blog_posts_blog_post_id
219222

220-
## Disclaimer
221-
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.
222231

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. |
238+
239+
**Usage:**
240+
```javascript
241+
api.deals.createDeal({
242+
associations: {
243+
associatedCompanyIds: [
244+
123456
245+
],
246+
associatedVids: [
247+
1234, 12345, 123456, ...
248+
],
249+
},
250+
properties: {
251+
dealname: 'This is a brand new deal. Awesome!',
252+
hubspot_owner_id: 123456,
253+
amount: '50000',
254+
dealtype: 'newbusiness',
255+
dealstage: 'appointmentscheduled',
256+
},
257+
})
258+
.then(response => console.log(response.data))
259+
.catch(error => console.error(error))
260+
```
261+
262+
**Reference:**
263+
https://developers.hubspot.com/docs/methods/deals/create_deal
264+
265+
## Disclaimer
266+
This tool is under development and don't have all HubSpot API endpoints implemented yet.

dist/endpoints/deals.js

+47
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
'use strict';
2+
3+
Object.defineProperty(exports, "__esModule", {
4+
value: true
5+
});
6+
7+
var _errorHandler = require('../helpers/errorHandler');
8+
9+
var _errorHandler2 = _interopRequireDefault(_errorHandler);
10+
11+
var _responseHandler = require('../helpers/responseHandler');
12+
13+
var _responseHandler2 = _interopRequireDefault(_responseHandler);
14+
15+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16+
17+
function _toConsumableArray(arr) { if (Array.isArray(arr)) { for (var i = 0, arr2 = Array(arr.length); i < arr.length; i++) { arr2[i] = arr[i]; } return arr2; } else { return Array.from(arr); } }
18+
19+
var Deals = function Deals() {
20+
var api = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
21+
22+
23+
if (api === null) throw new Error('Request instance must be provided on constructor.');
24+
25+
return {
26+
createDeal: function createDeal(parameters) {
27+
var properties = parameters.properties,
28+
associations = parameters.associations;
29+
30+
31+
var mappedProperties = Object.keys(properties).map(function (property) {
32+
return {
33+
value: properties[property],
34+
name: property
35+
};
36+
});
37+
38+
return api.post('deals/v1/deal', { properties: [].concat(_toConsumableArray(mappedProperties)), associations: associations }).then(function (response) {
39+
return (0, _responseHandler2.default)(response);
40+
}).catch(function (error) {
41+
return (0, _errorHandler2.default)(error);
42+
});
43+
}
44+
};
45+
};
46+
47+
exports.default = Deals;

dist/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ var _blog = require('./endpoints/blog');
1212

1313
var _blog2 = _interopRequireDefault(_blog);
1414

15+
var _deals = require('./endpoints/deals');
16+
17+
var _deals2 = _interopRequireDefault(_deals);
18+
1519
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
1620

1721
var NodeHubSpotApi = function NodeHubSpotApi() {
@@ -27,7 +31,7 @@ var NodeHubSpotApi = function NodeHubSpotApi() {
2731
blog: (0, _blog2.default)(api),
2832
domains: null,
2933
files: null,
30-
deals: null
34+
deals: (0, _deals2.default)(api)
3135
};
3236
};
3337

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-hubspot-api",
3-
"version": "0.4.0",
3+
"version": "1.0.0",
44
"description": "A wrapper for the HubSpot API based on Node.",
55
"main": "./dist/index.js",
66
"scripts": {

src/endpoints/deals.js

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import errorHandler from '../helpers/errorHandler'
2+
import responseHandler from '../helpers/responseHandler'
3+
4+
const Deals = (api = null) => {
5+
6+
if (api === null) throw new Error('Request instance must be provided on constructor.')
7+
8+
return {
9+
createDeal(parameters) {
10+
11+
let { properties, associations } = parameters
12+
13+
let mappedProperties = Object.keys(properties).map(property => ({
14+
value: properties[property],
15+
name: property,
16+
}))
17+
18+
return api.post('deals/v1/deal', {properties: [ ...mappedProperties ], associations})
19+
.then(response => responseHandler(response))
20+
.catch(error => errorHandler(error))
21+
},
22+
}
23+
}
24+
25+
export default Deals

src/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import Request from './helpers/request'
22
import Contacts from './endpoints/contacts'
33
import Blog from './endpoints/blog'
4+
import Deals from './endpoints/deals'
45

56
const NodeHubSpotApi = (apiKey = null) => {
67

@@ -13,7 +14,7 @@ const NodeHubSpotApi = (apiKey = null) => {
1314
blog: Blog(api),
1415
domains: null,
1516
files: null,
16-
deals: null,
17+
deals: Deals(api),
1718
}
1819
}
1920

test/deals.js

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
import chai from 'chai'
2+
import api from './setup'
3+
4+
let expect = chai.expect
5+
6+
describe('Deals', () => {
7+
8+
describe('Create a deal', () => {
9+
10+
it('Should return the data for the newly created deal', done => {
11+
12+
let dealInfo = {
13+
associations: {
14+
associatedCompanyIds: [], // Optional - companies association ID's
15+
associatedVids: [], // Optional - contacts association ID's
16+
},
17+
properties: {
18+
dealname: 'This is a brand new deal. Awesome!',
19+
hubspot_owner_id: '70', // demo user ID,
20+
amount: '50000',
21+
dealtype: 'newbusiness',
22+
},
23+
}
24+
25+
api.deals.createDeal(dealInfo)
26+
.then(response => {
27+
expect(response.status).to.equal(200)
28+
expect(response.data).to.be.a('object')
29+
expect(response.data.properties.dealname.value).to.be.equal(dealInfo.properties.dealname)
30+
expect(response.data.properties.hubspot_owner_id.value).to.be.equal(dealInfo.properties.hubspot_owner_id)
31+
expect(response.data.properties.amount.value).to.be.equal(dealInfo.properties.amount)
32+
expect(response.data.properties.dealtype.value).to.be.equal(dealInfo.properties.dealtype)
33+
done()
34+
})
35+
.catch(error => done(error))
36+
})
37+
})
38+
})

0 commit comments

Comments
 (0)