March 2020
Intermediate to advanced
528 pages
13h 18m
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 that we can use to browse the resources using a web browser. The following table describes a few basic query formats for accessing 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 ... |