This will give you a full list of all the properties in the system (an internal list, not the values on the specific record.) Then you can use something like JSON to CSV (or create a script to just get the "name" value. (something like results.name[0] for each result in the array.) This will give you a full list of all the properties internal name.
Then you can add those all to the initial request, and you'll get a list of all the properties for that specific contact.
Also, note that the response you sent indicates Invalid Authentication - this means your access token is invalid. You should be able to get it within your private app.
Hi @LewTalon - Thanks a ton for the input! 😊 It worked! However, I need help seeing specific properties due to my limited understanding of this platform. Is there a way by which I can see all the properties of a contact ( both default and custom )? I tried this from the documentation but only got an Invalid API error. In the previous case, the API key is working perfectly fine.
{"status":"error","message":"The API key provided is invalid. View or manage your API key here: https://app.hubspot.com/l/api-key/","correlationId":"********-****-****-****-************","category":"INVALID_AUTHENTICATION","links":{"api key":"https://app.hubspot.com/l/api-key/"}}
This will give you a full list of all the properties in the system (an internal list, not the values on the specific record.) Then you can use something like JSON to CSV (or create a script to just get the "name" value. (something like results.name[0] for each result in the array.) This will give you a full list of all the properties internal name.
Then you can add those all to the initial request, and you'll get a list of all the properties for that specific contact.
Also, note that the response you sent indicates Invalid Authentication - this means your access token is invalid. You should be able to get it within your private app.