I have a ‘Master Sequence’ that I want to pass a job ID and xaml file to. I basically built my own custom Orchestrator and I kick off jobs via CMD line:
Error converting value “{“JobID”:“75”,“WorkFlowToCall”:“C:\path\to\folder\UiPath\Test_1”}” to type ‘System.Collections.Generic.Dictionary`2[System.String,System.Object]’. Path ‘’, line 1, position 82.
I’ve tried everything I can think of. Added Json to the project, even removed the path and just did the filename, changed the order:
Error converting value “{“WorkFlowToCall”:“Test_01.xaml”,“JobID”:“75”}” to type ‘System.Collections.Generic.Dictionary`2[System.String,System.Object]’. Path ‘’, line 1, position 48.
Note: The Robot API is no longer supported. We recommend using the Orchestrator API.
The service and serviceModel elements were not in the config file. I tried placing them myself but could not get the API to respond to me.
And we don’t have Orchestrator so I can’t use that API . Maybe what I can do is pass the path and replace the “\” with something else so it doesn’t try to convert it. I’ll let you know how that goes