how to see all the properties of a hubspot through endpoint code example
Example: how to see all the properties of a hubspot through endpoint
var request = require("request");
var options = {
method: 'GET',
url: 'https://api.hubapi.com/properties/v1/contacts/properties',
qs: { hapikey: 'demo' }
}
request(options, function (error, response, body) {
if (error) throw new Error(error);
console.log(body);
});