This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Import required libraries | |
| const hubspot = require('@hubspot/api-client'); | |
| const request = require('request'); | |
| exports.main = (event, callback) => { | |
| //Create a new HubSpot Client | |
| const hubspotClient = new hubspot.Client({ | |
| apiKey: process.env.HAPIKEY | |
| }); | |