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

Commit 97ec3bf

Browse files
committed
Added parameters property to getContactById method and updated daocumentation.
1 parent ad13c24 commit 97ec3bf

File tree

3 files changed

+31
-8
lines changed

3 files changed

+31
-8
lines changed

README.md

+25-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,13 @@
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-
107
## Installation
118

129
`npm install node-hubspot-api --save`
1310

1411
## Tests
1512

16-
`npm test`
13+
`npm run test`
1714

1815
## Get Started
1916
```javascript
@@ -50,6 +47,30 @@ api.contacts.getAll({
5047

5148
**Reference:** http://developers.hubspot.com/docs/methods/contacts/get_contacts
5249

50+
#### - Get a contact by ID
51+
Returns information about a single contact by its ID. The contact's unique ID is stored in a field called 'vid' which stands for 'visitor ID'.
52+
53+
| Parameter | Description | Required | Default |
54+
| --------- | ----------- | :------: | :-----: |
55+
| **property** | By default, you will get all properties that the contact has values for. If you include the "property" parameter, then the returned data will only include the property or properties that you request. You can include this parameter multiple times to specify multiple properties. The lastmodifieddate and associatedcompanyid will always be included, even if not specified. Keep in mind that only properties that have a value will be included in the response, even if specified in the URL. | No | - |
56+
| **propertyMode** | One of “value_only” or “value_and_history” to specify if the current value for a property should be fetched, or the value and all the historical values for that property. | No | value_and_history |
57+
| **formSubmissionMode** | One of “all”, “none”, “newest”, “oldest” to specify which form submissions should be fetched. | No | all |
58+
| **showListMemberships** | Indicate whether current list memberships should be fetched for the contact. | No | false |
59+
60+
**Usage:**
61+
```javascript
62+
api.contacts.getContactById(123456, {
63+
property: 'hubspot_owner_id',
64+
propertyMode: 'value_and_history',
65+
formSubmissionMode: 'all',
66+
showListMemberships: false,
67+
})
68+
.then(response => console.log(response.data))
69+
.catch(error => console.error(error))
70+
```
71+
72+
**Reference:** https://developers.hubspot.com/docs/methods/contacts/get_contact
73+
5374
#### - Create a new contact
5475
Create a new contact in HubSpot. Returns a 200 response on success. The response will include the details for the created contact.
5576

dist/endpoints/contacts.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,10 @@ var Contacts = function Contacts() {
4848
});
4949
},
5050
getContactById: function getContactById(id) {
51+
var parameters = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
5152

52-
return api.get('contacts/v1/contact/vid/' + id + '/profile').then(function (response) {
53+
54+
return api.get('contacts/v1/contact/vid/' + id + '/profile', parameters).then(function (response) {
5355
return (0, _responseHandler2.default)(response);
5456
}).catch(function (error) {
5557
return (0, _errorHandler2.default)(error);

src/endpoints/contacts.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const Contacts = (api = null) => {
88
return {
99
mapProperties(properties) {
1010

11-
return Object.keys(properties).map((property) => ({
11+
return Object.keys(properties).map(property => ({
1212
property: property,
1313
value: properties[property],
1414
}))
@@ -25,9 +25,9 @@ const Contacts = (api = null) => {
2525
.then(response => responseHandler(response))
2626
.catch(error => errorHandler(error))
2727
},
28-
getContactById(id) {
28+
getContactById(id, parameters = {}) {
2929

30-
return api.get(`contacts/v1/contact/vid/${id}/profile`)
30+
return api.get(`contacts/v1/contact/vid/${id}/profile`, parameters)
3131
.then(response => responseHandler(response))
3232
.catch(error => errorHandler(error))
3333
},

0 commit comments

Comments
 (0)