Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 1.25 KB

File metadata and controls

38 lines (25 loc) · 1.25 KB

HubSpot Custom Object sample app

This is a sample app for the HubSpot client libraries. This sample app demonstrates how to make CRUD API calls to CRM custom objects API.

Reference

How to run locally

  1. Copy the .env.template file into a file named .env in the folder of the language you want to use. For example:
cp node/.env.template node/.env
  1. You'll need to create a private app to get your access token

Note

Choose necessary scopes (if you don't choose the sample won't work)

  1. Paste your access token as the value for ACCESS_TOKEN in .env

  2. Follow the language instructions on how to run. For example, if you want to run the Node server:

cd node # there's a README in this folder with instructions
npm install
./bin/cli.js

Supported languages