Hi Kosala Dayarathne
If your application is sending data to an external service you would need to make sure that external service supports a PUT endpoint for your data. They should have a spec for the data they are expecting. If this is JSON you could create a JSON structure in your Mendix app and build an Export Mapping based on this. You would then use this in your Call REST action in a Microflow to map the data from an entity into the correct structure to PUT to the external service. Make sure you select PUT as the HTTP Method for the Call REST action. Depending on the returned data from this call you may also need an Import Mapping to handle the response from the external.
Follow below URL:
https://docs.mendix.com/refguide/call-rest-action/
I Hope it will Help You !
Thank You ,
K. Ravi Kumar.
Hi Kosala Dayarathne,
Create a Microflow:
Configure the REST Service:
Test and Implement: