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

Commit bc29c29

Browse files
committed
Added method to get all deals.
1 parent dbe75ff commit bc29c29

File tree

8 files changed

+101
-14
lines changed

8 files changed

+101
-14
lines changed

README.md

+29
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,35 @@ http://developers.hubspot.com/docs/methods/blogv2/get_blog_posts_blog_post_id
222222

223223
### Deals
224224

225+
#### - Get all deals
226+
Get all of the deals in a portal. Returns a paginated set of deals.
227+
228+
In addition to the list of deals, each request will also return two values, *offset* and *hasMore*. If *hasMore* is *true*, you'll need to make another request, using the offset to get the next page of deal records.
229+
230+
| Parameter | Description |
231+
| --------- | ----------- |
232+
| **limit** | The number of records to return. Defaults to 100, has a maximum value of 250. |
233+
| **offset** | Used to page through the results. If there are more records in your portal than the limit= parameter, you will need to use the offset returned in the first request to get the next set of results. |
234+
| **properties** | Used to include specific deal properties in the results. By default, the results will only include Deal ID and will not include the values for any properties for your Deals. Including this parameter will include the data for the specified property in the results. You can include this parameter multiple times to request multiple properties. Note: Deals that do not have a value set for a property will not include that property, even when you specify the property. A deal without a value for the dealname property would not show the dealname property in the results, even with &properties=dealname in the URL. |
235+
| **propertiesWithHistory** | Works similarly to properties=, but this parameter will include the history for the specified property, instead of just including the current value. Use this parameter when you need the full history of changes to a property's value. |
236+
| **includeAssociations** | If it's set to *true*, it will include the IDs of the associated contacts and companies in the results. This will also automatically include the *num_associated_contacts* property. |
237+
238+
**Usage:**
239+
```javascript
240+
api.deals.getAllDeals({
241+
limit: 100,
242+
offset: null,
243+
properties: 'hubspot_owner_id',
244+
propertiesWithHistory: 'dealname',
245+
includeAssociations: false,
246+
})
247+
.then(response => console.log(response.data.deals))
248+
.catch(error => console.error(error))
249+
```
250+
251+
**Reference:**
252+
https://developers.hubspot.com/docs/methods/deals/get-all-deals
253+
225254
#### - Create a deal
226255
This methods creates a deal on HubSpot. You can create associations between Deals and Contacts and Companies but it's not required.
227256

dist/endpoints/deals.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ var Deals = function Deals() {
2323
if (api === null) throw new Error('Request instance must be provided on constructor.');
2424

2525
return {
26-
createDeal: function createDeal(parameters) {
27-
var properties = parameters.properties,
28-
associations = parameters.associations;
26+
createDeal: function createDeal(params) {
27+
var properties = params.properties,
28+
associations = params.associations;
2929

3030

3131
var mappedProperties = Object.keys(properties).map(function (property) {
@@ -40,6 +40,16 @@ var Deals = function Deals() {
4040
}).catch(function (error) {
4141
return (0, _errorHandler2.default)(error);
4242
});
43+
},
44+
getAllDeals: function getAllDeals() {
45+
var params = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
46+
47+
48+
return api.get('deals/v1/deal/paged', params).then(function (response) {
49+
return (0, _responseHandler2.default)(response);
50+
}).catch(function (error) {
51+
return (0, _errorHandler2.default)(error);
52+
});
4353
}
4454
};
4555
};

dist/helpers/errorHandler.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
'use strict';
1+
"use strict";
22

33
module.exports = function (error) {
44

55
if (error.response) {
6+
67
// The request was made, but the server responded with a status code
78
// that falls out of the range of 2xx
8-
console.log('\n ======> Error\n Message: ' + (error.response.data.message || error.response.statusText) + '\n Status Code: ' + error.response.status + '\n Status: ' + (error.response.data.status || '') + '\n headers: ' + JSON.stringify(error.response.headers) + '\n ');
9-
109
throw new Error(error.response.data.message || error.response.statusText);
1110
} else {
1211
// Something happened in setting up the request that triggered an Error

dist/helpers/request.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,12 @@ var Request = function () {
2424

2525
_classCallCheck(this, Request);
2626

27-
if (apiKey === null) throw new Error('You must provide the API key.');
27+
if (apiKey === null) throw new Error('You must provide the HubSpot API key.');
2828

2929
this.apiKey = apiKey;
3030
this.apiInstance = _axios2.default.create({
3131
baseURL: '' + API_ENDPOINT,
32-
timeout: 10000
33-
});
32+
timeout: 300000 });
3433
}
3534

3635
_createClass(Request, [{

dist/helpers/responseHandler.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
module.exports = function (response) {
44

55
if (response.statusText === 'error') {
6+
67
// The request was made, but the server responded with a status code
78
// that falls out of the range of 2xx
8-
console.log('\n ======> Error\n Message: ' + response.body.message + '\n Status: ' + error.statusCode + '\n headers: ' + JSON.stringify(error.headers) + '\n ');
9-
109
throw new Error(response.body.message);
1110
}
1211

package.json

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

src/endpoints/deals.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ const Deals = (api = null) => {
66
if (api === null) throw new Error('Request instance must be provided on constructor.')
77

88
return {
9-
createDeal(parameters) {
9+
createDeal(params) {
1010

11-
let { properties, associations } = parameters
11+
let { properties, associations } = params
1212

1313
let mappedProperties = Object.keys(properties).map(property => ({
1414
value: properties[property],
@@ -19,6 +19,12 @@ const Deals = (api = null) => {
1919
.then(response => responseHandler(response))
2020
.catch(error => errorHandler(error))
2121
},
22+
getAllDeals(params = {}) {
23+
24+
return api.get('deals/v1/deal/paged', params)
25+
.then(response => responseHandler(response))
26+
.catch(error => errorHandler(error))
27+
},
2228
}
2329
}
2430

test/deals.js

+45
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,51 @@ let expect = chai.expect
55

66
describe('Deals', () => {
77

8+
describe('Get deal', () => {
9+
10+
it('Should return a list of all deals', done => {
11+
12+
api.deals.getAllDeals()
13+
.then(response => {
14+
expect(response.status).to.equal(200)
15+
expect(response.data).to.be.a('object')
16+
expect(response.data.deals).to.be.a('array')
17+
done()
18+
})
19+
.catch(error => done(error))
20+
})
21+
22+
it('Should return a list of all deals, limit by 50', done => {
23+
24+
api.deals.getAllDeals({limit: 50})
25+
.then(response => {
26+
expect(response.status).to.equal(200)
27+
expect(response.data).to.be.a('object')
28+
expect(response.data.deals.length).to.be.equal(50)
29+
expect(response.data.deals).to.be.a('array')
30+
done()
31+
})
32+
.catch(error => done(error))
33+
})
34+
35+
it('Should return a list of all deals, including the IDs of the associated contacts and companies', done => {
36+
37+
api.deals.getAllDeals({includeAssociations: true})
38+
.then(response => {
39+
expect(response.status).to.equal(200)
40+
expect(response.data).to.be.a('object')
41+
expect(response.data.deals).to.be.a('array')
42+
expect(response.data.deals[0].associations).to.be.a('object')
43+
expect(response.data.deals[0].associations.associatedVids).to.be.a('array')
44+
expect(response.data.deals[0].associations.associatedCompanyIds).to.be.a('array')
45+
expect(parseInt(response.data.deals[0].properties.num_associated_contacts.value)).to.be.a('number')
46+
done()
47+
})
48+
.catch(error => done(error))
49+
})
50+
51+
})
52+
853
describe('Create a deal', () => {
954

1055
it('Should return the data for the newly created deal', done => {

0 commit comments

Comments
 (0)