How to publish API of one mendix application and consume that API in another Application

0
Hello All, I have follow this document →  Publish a REST Service  &   Consume a REST Service I m able to publish Api but Im not able to consume that particular API,  In “Publish a REST Service “ document they have explain to publish Api but How to consume That Api In another Application they have not explain similarly In “Consume a REST Service” document they have explain How to consume this Api but they have not explain how tocreate the Api which they are using In shot the Api that I have created I m not able to find way to use that API in another application
asked
2 answers
1

Use the published api swagger to get the endpoints and consume them over a call rest api in a microflow in your other app. You can use non persistable entities to better map the data.

Also: 
https://docs.mendix.com/howto/integration/publish-rest-service
https://docs.mendix.com/howto/integration/consume-a-rest-service

Good luck!

 

answered
0

Not sure if I understood you correctly but if you need to consume the REST API you can use the Call REST action activity in the microflow of the app where you want to consume the API published by another app.

answered