Validation fails when passing a file path as Input Argument to Orchestrator API StartJobs

942 Views Asked by At

I am trying to use file name path (Ex: C:\Document\Report.txt) as a parameter through uipath orchastrator api. I tried different approach and In each approach I am getting Bad request error "{"message":"Argument Values validation failed.","errorCode":2003,"resourceIds":null}"

Below is my Example code

FileListUploaded ="C\\Documents\\report.txt";
                    string parameter1 = "{\"startInfo\": {\"ReleaseKey\": \"xxxxx-xxx-xxx-xxx-xxxxxx\"," +
                        "\"RobotIds\": [xxxxx]," +
                        "\"JobsCount\": 0," +
                        "\"InputArguments\": \"{ "+
                        "\\\"reports_or_other_files\\\": \\\" + FileListUploaded + \\\"}\"}}";        
                    request_startRobot.AddParameter("application/json; charset=utf-16", parameter, ParameterType.RequestBody);
                    IRestResponse response_startRobot = client_startRobot.Execute(request_startRobot);
1

There are 1 best solutions below

0
On

That's a bit messy to look at, but it appears you are not quoting and escaping your JSON correctly.

I might suggest building an array and serializing it into JSON to make it easier to read, or using a HEREDOC or string formatting. If you do continue to concatenate your JSON body string together, dump out the results to see how it is coming together.

The final results of the JSON should look something like

{
  "startInfo": {
    "ReleaseKey":"{{uipath_releaseKey}}",
    "Strategy":"JobsCount",
    "JobsCount":1,
    "InputArguments":"{\"reports_or_other_files\":\"C:\\\\Documents\\\\report.txt\"}"
  }
}

With the InputArguments:

  • Looks like you are missing some quotes
  • Might need to double escape your backslashes in the FileListUploaded variable
  • Missing a colon after the C in the path