|
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 |
| - |
10 | 7 | ## Installation
|
11 | 8 |
|
12 | 9 | `npm install node-hubspot-api --save`
|
13 | 10 |
|
14 | 11 | ## Tests
|
15 | 12 |
|
16 |
| - `npm test` |
| 13 | + `npm run test` |
17 | 14 |
|
18 | 15 | ## Get Started
|
19 | 16 | ```javascript
|
@@ -50,6 +47,30 @@ api.contacts.getAll({
|
50 | 47 |
|
51 | 48 | **Reference:** http://developers.hubspot.com/docs/methods/contacts/get_contacts
|
52 | 49 |
|
| 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 | + |
53 | 74 | #### - Create a new contact
|
54 | 75 | Create a new contact in HubSpot. Returns a 200 response on success. The response will include the details for the created contact.
|
55 | 76 |
|
|
0 commit comments