What are the important URI for OData model service

How to get the metadata of the OData service: https://services.odata.org/v4/northwind/northwind.svc/$metadata http://localhost:8080/sap/opu/odata/sap/ZOData_Service/$metadata How to get the no of records from the entity https://services.odata.org/v4/northwind/northwind.svc/Customers/$count http://localhost:8080/sap/opu/odata/sap/ZOData_Service/Customers/$count Here the entity mentioned in the URL is ‘Customers’. Customers is not case sensitive The above url will print out the no of records in the entity set Customers. How to get …

What are the important URI for OData model service Read More »