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

Commit 7a0b24f

Browse files
committed
Closes #5 and updates to version 0.3.0
1 parent aa23c1f commit 7a0b24f

File tree

5 files changed

+69
-19
lines changed

5 files changed

+69
-19
lines changed

README.md

+19-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,25 @@ api.contacts.updateContact({
8585
company: 'My Company 2',
8686
...
8787
}, 123456)
88-
.then(response => console.log(response.data.properties))
88+
.then(response => console.log(response.status))
89+
.catch(error => console.error(error))
90+
```
91+
92+
**Reference:**
93+
https://developers.hubspot.com/docs/methods/contacts/update_contact
94+
95+
#### - Update a contact by email
96+
97+
**Usage:**
98+
```javascript
99+
api.contacts.updateContactByEmail({
100+
firstname: 'Jon',
101+
lastname: 'Doe',
102+
website: 'http://www.my-new-company.com',
103+
company: 'My Company 2',
104+
...
105+
106+
.then(response => console.log(response.status))
89107
.catch(error => console.error(error))
90108
```
91109

dist/endpoints/contacts.js

+11-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ var Contacts = function Contacts() {
5757
return (0, _errorHandler2.default)(error);
5858
});
5959
},
60-
updateContact: function updateContact(properties, id) {
60+
updateContactById: function updateContactById(properties, id) {
6161

6262
var mappedProperties = this.mapProperties(properties);
6363

@@ -66,6 +66,16 @@ var Contacts = function Contacts() {
6666
}).catch(function (error) {
6767
return (0, _errorHandler2.default)(error);
6868
});
69+
},
70+
updateContactByEmail: function updateContactByEmail(properties, email) {
71+
72+
var mappedProperties = this.mapProperties(properties);
73+
74+
return api.post('contacts/v1/contact/email/' + email + '/profile', { properties: [].concat(_toConsumableArray(mappedProperties)) }).then(function (response) {
75+
return (0, _responseHandler2.default)(response);
76+
}).catch(function (error) {
77+
return (0, _errorHandler2.default)(error);
78+
});
6979
}
7080
};
7181
};

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

src/endpoints/contacts.js

+10-2
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,22 @@ const Contacts = (api = null) => {
3333
.then(response => responseHandler(response))
3434
.catch(error => errorHandler(error))
3535
},
36-
updateContact(properties, id) {
36+
updateContactById(properties, id) {
3737

3838
let mappedProperties = this.mapProperties(properties)
3939

4040
return api.post(`contacts/v1/contact/vid/${id}/profile`, {properties: [ ...mappedProperties ]})
4141
.then(response => responseHandler(response))
4242
.catch(error => errorHandler(error))
43-
}
43+
},
44+
updateContactByEmail(properties, email) {
45+
46+
let mappedProperties = this.mapProperties(properties)
47+
48+
return api.post(`contacts/v1/contact/email/${email}/profile`, {properties: [ ...mappedProperties ]})
49+
.then(response => responseHandler(response))
50+
.catch(error => errorHandler(error))
51+
},
4452
}
4553
}
4654

test/contacts.js

+28-14
Original file line numberDiff line numberDiff line change
@@ -22,46 +22,60 @@ describe('Contacts', () => {
2222

2323
describe('Create or update a contact', () => {
2424

25-
let newContact = {
25+
let contactInfo = {
2626
email: Math.random().toString(36).substring(2,11) + '@domain.com',
2727
firstname: 'James',
2828
lastname: 'Bond',
2929
website: 'http://www.mycompany.com',
3030
company: 'My Company',
3131
}
3232

33-
let existingContact = {}
34-
3533
it('Should return the details of the new contact record', done => {
3634

37-
api.contacts.createContact(newContact)
35+
api.contacts.createContact(contactInfo)
3836
.then(response => {
3937
expect(response.status).to.equal(200)
4038
expect(response.data).to.be.a('object')
4139
expect(response.data.properties).to.be.a('object')
42-
expect(response.data.properties.email.value).to.be.equal(newContact.email)
43-
expect(response.data.properties.firstname.value).to.be.equal(newContact.firstname)
44-
expect(response.data.properties.lastname.value).to.be.equal(newContact.lastname)
45-
expect(response.data.properties.website.value).to.be.equal(newContact.website)
46-
expect(response.data.properties.company.value).to.be.equal(newContact.company)
40+
expect(response.data.properties.email.value).to.be.equal(contactInfo.email)
41+
expect(response.data.properties.firstname.value).to.be.equal(contactInfo.firstname)
42+
expect(response.data.properties.lastname.value).to.be.equal(contactInfo.lastname)
43+
expect(response.data.properties.website.value).to.be.equal(contactInfo.website)
44+
expect(response.data.properties.company.value).to.be.equal(contactInfo.company)
4745

4846
// Save created contact ID
49-
existingContact.id = response.data.vid
47+
contactInfo.id = response.data.vid
5048

5149
done()
5250
})
5351
.catch(error => done(error))
5452
})
5553

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

58-
existingContact = {
59-
...existingContact,
56+
contactInfo = {
57+
...contactInfo,
6058
firstname: 'Jon',
6159
lastname: 'Doe',
6260
}
6361

64-
api.contacts.updateContact(existingContact, existingContact.id)
62+
api.contacts.updateContactById(contactInfo, contactInfo.id)
63+
.then(response => {
64+
expect(response.status).to.equal(204)
65+
done()
66+
})
67+
.catch(error => done(error))
68+
})
69+
70+
it('Should return the details of the updated contact record by email', done => {
71+
72+
contactInfo = {
73+
...contactInfo,
74+
firstname: 'Jon Update',
75+
lastname: 'Doe Update',
76+
}
77+
78+
api.contacts.updateContactByEmail(contactInfo, contactInfo.email)
6579
.then(response => {
6680
expect(response.status).to.equal(204)
6781
done()

0 commit comments

Comments
 (0)