microflow input parameters from widget

0
We have developed a custom made calender widget which is filled with data by calling a microflow through the mendix API. This works, but when we call another microflow through the API which has a list as input parameter, nothing is received when exactly one guid is sent. Should we define 2 microflow input paramters : a list and an object ?
asked
2 answers
1

Do you mean the Mendix JavaScript API? If so, the microflow will expect a list of Guids, hence try adding brackets around this one guid, making it an array with a single guid. 

answered
0

Why don’t you add an Exclusive Split in the mocroflow to check if the input is an array.  Then you can continue as before if false and convert to regular parameter if true

answered