Skip to content

Instantly share code, notes, and snippets.

@jackcoldrick90
Last active May 10, 2022 19:28
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jackcoldrick90/6d854d0fe41a8b564bb4341f458d1bd2 to your computer and use it in GitHub Desktop.
Save jackcoldrick90/6d854d0fe41a8b564bb4341f458d1bd2 to your computer and use it in GitHub Desktop.
Using Hubspot Operations Hub Custom Coded workflow action you can split the full name provided by a contact and store in the firstname and lastname properties. Ideal if you're asking for the entire name in a single field on the form.
const hubspot = require('@hubspot/api-client');
exports.main = (event, callback) => {
const hubspotClient = new hubspot.Client({
apiKey: process.env.HAPIKEY
});
hubspotClient.crm.contacts.basicApi.getById(event.object.objectId, ["full_name"])
.then(results => {
let fullName = results.body.properties.full_name;
let splitName = fullName.split(" ");
callback({
outputFields: {
firstName: splitName[0],
lastName: splitName[1]
}
});
})
.catch(err => {
console.error(err);
});
}
@eimnorberg
Copy link

@jackcoldrick90 Could this be altered to extract first and last name from an email address provided it follows the standard first.last@domain.com? So basically ignore anything after @ and then use the "." as the delimiter similar to your " " above?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment