8.16 method POST - REST call

0
Hi Mendix. I have a registration form. I need their fields for entering "registration" and "login" to receive data and insert into the request body. POST https://url/register Request body: { "Email": "hdhdhd@gmail.com". "Password": "123234" } Can you provide an example of how I can send a REST call with dynamic data?
asked
1 answers
0

You will need to create relevant entities with attributes that fulfill your requirement of what data you need to take input for and store in database. Then you use the data view to create forms for it where you can take input from user. 
On save button, call a microflow. There you can do things like call rest services, manipulate data, store data in database etc. 

For REST call tutorial, see the documentation 
https://docs.mendix.com/refguide/call-rest-action

If you are very new to Mendix, then you probably need to start with beginner learning paths so that you are able to create basic pages and take input as per your requirement

answered