Filtering data from entity in call
If you want to fetch or view data from a data entity you might want to filter it to limit your results. This can be done by applying the filter functionality. If you want to fetch all data in an entity you add data/[Entity name] in your environment URL. For example https://myd365environment.sandbox.operations.dynamics.com/data/WorkListSalesTables. Add filter to URL If that entity returns data irrelevant to you, you can filter it by adding filter keyword and column names and values to your URL. Under is an example where I only want one specific order. The column for order is named OrderNumber and the order number I want to retrieve data from is 100051 . Readable version: https://myd365environment.sandbox.operations.dynamics.com/data/MyEntity?$filter= OrderNumber eq ' 100051 ' Parsed to Web URL: https://myd365environment.sandbox.operations.dynamics.com/data/WorkListSalesTables/?$filter= OrderNumber %20eq%20%27 100051 %27 If you have more values to filter on you add them with the