Postman OData Tutorial
Number of APIs: 25
-
02. Read the service metadata GET http://services.odata.org/V4/TripPinService/$metadata
-
03. Read an entity set GET http://services.odata.org/V4/TripPinService/People
-
04. Get a single entity from an entity set GET http://services.odata.org/V4/TripPinService/People('russellwhyte')
-
06. Get the raw value of a primitive property GET http://services.odata.org/V4/TripPinService/People('russellwhyte')/FirstName/$value
-
07. Navigate to related entities GET http://services.odata.org/V4/TripPinService/People('russellwhyte')/Friends('scottketchum')/AddressInfo
-
09. Filter on enumeration properties GET http://services.odata.org/V4/TripPinService/People?$filter=Gender eq Microsoft.OData.SampleService.Models.TripPin.PersonGender'Female'
-
10. Filter on nested structures GET http://services.odata.org/V4/TripPinService/Airports?$filter=Location/City/Region eq 'California'
-
11. Filter using logic operators GET http://services.odata.org/V4/TripPinService/People?$filter=not(contains(FirstName,'Q')) and (AddressInfo/any(ai:ai/City/Region eq 'WA') or AddressInfo/any(ai:ai/City/Region eq 'ID'))
-
12. Filter using any/all operators GET http://services.odata.org/V4/TripPinService/People?$filter=Emails/any(e: endswith(e, 'contoso.com'))
-
14. Sort a collection GET http://services.odata.org/V4/TripPinService/People?$orderby=length(FirstName) desc,UserName