POST data from mendix to another app

0
i do have a data in the form,  need help on how i can post this data on “submit” button so it can be posted to a external webservice , which is waiting for this data in json format. any guidance towards document or steps is helpful, thanks.  
asked
3 answers
1

If you need to send a post data from mendix to another app, you can create a microflow triggered by the button submit, this microflow will have a call rest action inside of it. in that action you can define the url of your app, and you can in the tab request put the element that you want to send (in json format)

answered
0

I use custom request template :

 

 

$request =  ' { "pageSize": 100, "Name": "'+$Form/Name+'" } '

answered
0

0

When i choose "export mapping for entire request" , i am being asked for a "parameter" value, i am not able to figure how to update the parameter value from the mapping. 

 

answered