Developer Q&A
how to turn off unwanted properties
almost 6 years ago by david
i can use propertySet to specify the columns i want. but API returns all columns, with dummy values in those properties not in propertySet. is there a way i only get desired columns to return?
for example:
propertySet = 'FirstName' (EntityType = Employee)
returned result:
..........
'FirstName': 'David',
'LastName': None,
'DisplayAs': None,
'Role': None,
'AccessToAllWorkZones': False,
'LanguageId': 0,
'ActorTypeId': 'Unknown',
.............