September 2017
Beginner to intermediate
562 pages
13h 46m
English
If you want to know what OData endpoints are available in your Finance and Operations environment, or want to query a specific entity to get the data, you can simply browse using a web browser. OData provides a simple query format to browse the resources using a web browser. The following table describes a few basic query formats to access OData resources and entity data:
| URL | Description |
| [Your Organization Root URL]/data/ | Get a list of data entities |
| [Your Organization Root URL]/data/Customers | Get a list of all the customers |
| [Your Organization Root URL]/data/Customers?$top=3 | Get a list of the first three customer records |
| [Your Organization Root URL]/data/Customers?$select=FirstName,LastName ... |