Hello Mike,
OK, I made the input parameter as object
As output parameter it returns the Task coming from the REST API
Now, how can I get rid of the “page parameter”?
Because the user should enter the Id.
And in the home page, there is now a parameter expected to call the page:
Hello,
now that I solved how to pass the input text value to the microflow, how can I get the result AFTER the button was pressed.
When I configure like this, the microflow will be called immediately after the page is opened/loaded (it always show object nr 1 because I set this to the initial value)
So I think the datasource for the second Dataview is wrong, it should not be the microflow, but listen to the button somehow.
How do I update fields after button was pressed?
Raimund,
You are on the right track.
In your microflow, make the parameter a Task object . Then create a string variable in your microflow and set the value to $Task/_id (assuming that the _id attribute is a string). That should do it.
Mike