Utilizing ajax to retrieve data from web services in sitefinity, I have been able to successfully retrieve team member information using this specific apiURL:
localhost/api/lawyerswebservice/teammembers?$expand=RelatedTeam,PrimaryImage;
However, I have encountered an issue accessing fields that are classified. For instance, when attempting the following query:
localhost/api/lawyerswebservice/teammembers?$expand=PositionTypes;
An error is displayed in the console:
{"error":{"code":"Unknown","message":"Property 'PositionTypes' on type 'Telerik.Sitefinity.DynamicTypes.Model.Team.TeamMember' is not a navigation property or complex property. Only navigation properties can be expanded."}}
Any guidance on how to retrieve this data would be greatly appreciated. Thank you