Last active
September 4, 2022 15:06
-
-
Save NickDeckerDevs/ae991346ca13e3e17613d1f5b6d83fdd to your computer and use it in GitHub Desktop.
bare minimum for hubspot custom object creation
This file contains 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
const hubspot = require('@hubspot/api-client') | |
const hubspotClient = new hubspot.Client({ | |
"accessToken": process.env.PRIVATE_APP_TOKEN | |
}) | |
const labels = { | |
"singular": "Property", | |
"plural": "Properites" | |
}; | |
const ObjectSchemaEgg = { | |
labels, | |
requiredProperties: [ | |
"property_name", | |
"property_address" | |
], | |
searchableProperties: ['property_name'], | |
primaryDisplayProperty: "property_name", | |
secondaryDisplayProperties: ['property_address'], | |
properties: [ | |
{ | |
"name":"property_name", | |
"label":"Property Name", | |
"isPrimaryDisplayLabel":true, | |
"type":"string" | |
}, | |
{ | |
"name":"property_address", | |
"label":"Property Address", | |
"isPrimaryDisplayLabel":false, | |
"type":"string" | |
} | |
], | |
associatedObjects: [ | |
"CONTACT", | |
"DEAL" | |
], | |
name: "meta_property" | |
} | |
try { | |
const apiResponse = await hubspotClient.crm.schemas.coreApi.create(ObjectSchemaEgg); | |
console.log(JSON.stringify(apiResponse.body, null, 2)); | |
} catch (e) { | |
e.message === 'HTTP request failed' | |
? console.error(JSON.stringify(e.response, null, 2)) | |
: console.error(e) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment