Issue with OpenRPA and PowerShell Pipeline when input contains an Array

I’m experiencing an issue with OpenRPA when piping input from PowerShell. If the input object contains an array, the command fails.

I use the following command: $robotInput | Invoke-OpenRPA -Filename 87abf7fd-66cf-46cc-83d7-9a19086a8ce9

I’ve tried multiple ways to define $robotInput, but all of them fail:
$robotInput = @{“PROsArray” = @(“Flores, Beatriz”, “Nuno, Lilibeth”)}
$robotInput = @{“PROsArray” = [System.String]@(“Flores, Beatriz”, “Nuno, Lilibeth”)}
$robotInput = @{“PROsArray” = {“Flores, Beatriz”, “Nuno, Lilibeth”}}
$robotInput = @{“PROsArray” = [System.String]@(“Flores, Beatriz”, “Nuno, Lilibeth”)} | ConvertTo-Json -Depth 10

Regardless of the approach, I receive errors related to JSON serialization or Newtonsoft.Json.Linq.JArray or Error reading JObject from JsonReader. Current JsonReader item is not an object: String. Path

and does the workflow have an array as input argument ?

Never mind, i just tested, and I see there is no way to parse an array in …
I need to debug this some more.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.

Moving this topic to Issues and feature requests so it does not closed.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.