How to download specific fields for every contact

You can specify the properties returned in the response by adding them to the request.

You can add an array “properties=[]” and specify which properties. In this case I’ve added “Test Property” but you can add multiple

try:api_response = client.crm.contacts.default_api.get_page(limit=10, properties=["test property", "another test property"], archived=False)

Then when you make the request you’ll get the data for each property added. Hope this helps!