Robert,
One way you could accomplish this:
Now your page will display a list of the results your retrieved via your REST call.
This how to takes you through many of these steps, however it anticipates retrieving a single object, not a number of objects: https://docs.mendix.com/howto/integration/consume-a-rest-service
Hope that helps,
Mike
Hi Robert,
That error means that the parameters for your microflow don't match the dataview for your page. So for the action button inside the dataview, just make sure it has one parameter (or two if the button is inside both dataviews) and that the parameter is of the same type as the data view.
If you are trying to call a microflow from a grid, and you want to use a parameter from the grid as well as a parameter from a dataview, then you would add the action button to the control bar of the grid, and you would use two parameters (the grid needs to be inside the dataview). One parameter would be of type of the dataview, and the other would be the same type as the grid.
Also here is a link to the learning modules.
https://gettingstarted.mendixcloud.com/index3.html
Hope this helps!
Yes !, that worked like a charm.
Thanks !!