There's a new version of the HubSpot API

As of November 30, 2022, HubSpot API keys are no longer a supported authentication method for accessing HubSpot APIs. Instead, you should use a private app access token or OAuth to authenticate API calls. Learn more about this change and how to migrate an API key integration to use a private app instead.

Why don't I see all of my contact properties when pulling contact records?

Contact records will only show a property if they have had a value set for that property.  A contact that has never had a firstname will not show that property in its data.

Additionally, any endpoint that returns a list of contact records (such as pulling all records in the portal) will only return a few specific properties:

  • firstname
  • lastname
  • company
  • lastmodifieddate

You can change which properties are included in the response by adding &property= to the URL as a query parameter.  You can add this parameter multiple times to specify multiple properties:
http://api.hubapi.com/contacts/v1/lists/all/contacts/all?property=email&property=createdate

Please note that if you include the property parameter, you will only get the property or properties you explicitly include in the URL (notice that firstname and lastname are not included in the response for the example URL above).

Any endpoints returning a list will only return the specified properties, so if you need to see all of the properties that a record has set you will need to pull the individual record by its vid, email, or usertoken.