Microflow Error

0
Error: ‘The microflow expression is of type myfirstmodule.root but should be of type list of myfirstmodule.jsonobject’   Output Type Call REST: MyFirstModule.root indeed of myfirstmodule.jsnobject.  How can I fix this??  
asked
1 answers
0

It looks like your import mapping gives you back a MyFirstModule.root object, but in the endpoint of your microflow, you're trying to return a myfirstmodule.jsnobject. To resolve this, double-click the endpoint and select the right object type (MyFirstModule.root). That should resolve your error. 

answered