Re: Passing Arguments (Including Array) to PowerAutomate Flow as JSON
Please forgive my ignorance, but I thought I had already created a collection to pass to the flow:
ClearCollect(AssignedToList,{assignee: CR_ASSIGNEDTO_Value.SelectedItems});
Set(
PowerAppsInput,
{
AssignedTo: JSON(AssignedToList,JSONFormat.IgnoreBinaryData),
}
)
I think my issue may be accessing the array within the flow properly, rather than passing the array to the flow, but I could very well be wrong.