How to consume a published OData service in mendix through Url .

0
Hii Experts, Already i have published Odata service in mendix and that api successfully published in mendix datahub ,but i want to consume that api through url but i didnt get any solution,I am able to consume the external entities of published api in another application but through Url how can i consume in another application..
asked
1 answers
1

An OData API is a standardized REST API, so this means you can also consume it with the REST client functionality in Mendix, e.g., Call REST service activity in a microflow. To simplify this, every OData REST API also provides an OpenAPI contract and a Swagger test page. If you navigate to the source application in a browser on /api-doc/ you'll find the OData contract, the OpenAPI contract and a swagger test page.

answered