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

Commit 97553f9

Browse files
committed
Added method to create or update a contact by email. Updates to version v0.4.0
1 parent 3721f09 commit 97553f9

File tree

5 files changed

+63
-5
lines changed

5 files changed

+63
-5
lines changed

README.md

+26-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
# node-hubspot-api
22
![version](http://img.shields.io/npm/v/node-hubspot-api.svg)
33
[![Build Status](https://api.travis-ci.org/hmschreiner/node-hubspot-api.svg)](https://travis-ci.org/hmschreiner/node-hubspot-api.svg?branch=master)
4-
[![Coverage Status](https://coveralls.io/repos/github/hmschreiner/node-hubspot-api/badge.svg?branch=master)](https://coveralls.io/github/hmschreiner/node-hubspot-api?branch=master)
54

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

@@ -93,6 +92,9 @@ api.contacts.updateContactById({
9392
https://developers.hubspot.com/docs/methods/contacts/update_contact
9493

9594
#### - Update a contact by email
95+
Update an existing contact in HubSpot, identified by email. This method lets you update the properties of a contact in HubSpot. You must pass the Contact's email that you're updating as second parameter.
96+
97+
If the request succeeds, you'll get an HTTP 204 response, which represents that you have successfully updated the contact in the system. There will be no data in the response body.
9698

9799
**Usage:**
98100
```javascript
@@ -110,6 +112,29 @@ api.contacts.updateContactByEmail({
110112
**Reference:**
111113
https://developers.hubspot.com/docs/methods/contacts/update_contact-by-email
112114

115+
#### - Create or update a contact
116+
Create a contact if it doesn't exist already, or update it with the latest property values if it does.
117+
118+
This returns a 200 response on success. The response will contain a vid of the updated or created record, and an isNew field that indicates if a new record was created. If the field is false, an existing record was updated.
119+
120+
This will return a 409 Conflict error response if you are trying to update the email address of a record, and there is an existing record with the new email address.
121+
122+
**Usage:**
123+
```javascript
124+
api.contacts.createOrUpdateContact({
125+
firstname: 'Jon',
126+
lastname: 'Doe',
127+
website: 'http://www.my-new-company.com',
128+
company: 'My Company 2',
129+
...
130+
131+
.then(response => console.log(response.status))
132+
.catch(error => console.error(error))
133+
```
134+
135+
**Reference:**
136+
https://developers.hubspot.com/docs/methods/contacts/create_or_update
137+
113138
### Blog
114139

115140
#### - Get all blogs

dist/endpoints/contacts.js

+10
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,16 @@ var Contacts = function Contacts() {
7676
}).catch(function (error) {
7777
return (0, _errorHandler2.default)(error);
7878
});
79+
},
80+
createOrUpdateContact: function createOrUpdateContact(properties, email) {
81+
82+
var mappedProperties = this.mapProperties(properties);
83+
84+
return api.post('contacts/v1/contact/createOrUpdate/email/' + email, { properties: [].concat(_toConsumableArray(mappedProperties)) }).then(function (response) {
85+
return (0, _responseHandler2.default)(response);
86+
}).catch(function (error) {
87+
return (0, _errorHandler2.default)(error);
88+
});
7989
}
8090
};
8191
};

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.3.0",
3+
"version": "0.4.0",
44
"description": "A wrapper for the HubSpot API based on Node.",
55
"main": "./dist/index.js",
66
"scripts": {

src/endpoints/contacts.js

+9
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,15 @@ const Contacts = (api = null) => {
4949
.then(response => responseHandler(response))
5050
.catch(error => errorHandler(error))
5151
},
52+
createOrUpdateContact(properties, email) {
53+
54+
let mappedProperties = this.mapProperties(properties)
55+
56+
return api.post(`contacts/v1/contact/createOrUpdate/email/${email}`, {properties: [ ...mappedProperties ]})
57+
.then(response => responseHandler(response))
58+
.catch(error => errorHandler(error))
59+
60+
},
5261
}
5362
}
5463

test/contacts.js

+17-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ describe('Contacts', () => {
3030
company: 'My Company',
3131
}
3232

33-
it('Should return the details of the new contact record', done => {
33+
it('Should return new contact record', done => {
3434

3535
api.contacts.createContact(contactInfo)
3636
.then(response => {
@@ -51,7 +51,7 @@ describe('Contacts', () => {
5151
.catch(error => done(error))
5252
})
5353

54-
it('Should return the details of the updated contact record by ID', done => {
54+
it('Should return updated contact record by ID', done => {
5555

5656
contactInfo = {
5757
...contactInfo,
@@ -67,7 +67,7 @@ describe('Contacts', () => {
6767
.catch(error => done(error))
6868
})
6969

70-
it('Should return the details of the updated contact record by email', done => {
70+
it('Should return updated contact record by email', done => {
7171

7272
contactInfo = {
7373
...contactInfo,
@@ -82,5 +82,19 @@ describe('Contacts', () => {
8282
})
8383
.catch(error => done(error))
8484
})
85+
86+
it('Should return the created or updated contact record by email and indicates if a new contact was created', done => {
87+
88+
api.contacts.createOrUpdateContact(contactInfo, contactInfo.email)
89+
.then(response => {
90+
expect(response.status).to.equal(200)
91+
expect(response.data.vid).to.be.a('number')
92+
expect(response.data.isNew).to.be.a('boolean')
93+
done()
94+
})
95+
.catch(error => done(error))
96+
97+
})
98+
8599
})
86100
})

0 commit comments

Comments
 (0)