Can we pass few input arguments in StartJob Orchestrator api?

Yeah sure @Abhinavpandey,
Please refer the documentation below.
https://docs.uipath.com/orchestrator/reference#jobs-requests

"startInfo": {

	"ReleaseKey": "429cf1cc-283c-424f-a935-43f72c2ca719",
	"RobotIds": [121],
	"JobsCount": 0,
	"Strategy": "Specific",
	"InputArguments": "{\"age\":33,\"trueOrFalse\":false,\"stringNew\":\"testing\"}"
   }

By using InputArguments attribute you can give the values as parameter.

Note: Inside the InputArguments Values, The entire values should be JSON Escaped.

6 Likes