Retrieving all properties from contact records

I am trying to use the hubspot api to get info about various contacts. I can search a contact using the api and get vaious info (lastname, firstname, lifecyclestage, etc.) but im having trouble getting custom properties. I have crm.contacts.read enabled as a scope in my private app so I should be able to read the contact info but I can only see the default properties. How do I view all properties, including cutom ones?

ps. I am working in python using the hubspot api client but anything helps :slightly_smiling_face:

Hey, @akazan :waving_hand: You need to include the properties you want returned as a query param. Otherwise, you’ll only get back a small subset of the default properties. Unfortunately, there isn’t a one-click “include all” option. Here’s the part of the documentation that covers this — specify properties.

Have fun building! —Jaycee

Got it to work. Thank you!

Just a follow-up to this, for verification…

with the old V1 API (which is about to be retired), I could get ALL properties via:

api.hubapi.com/contacts/v1/lists/listID]/contacts/all?count=N

Is there no way to get all properties with the V3 API ?