Hi all,
I’m trying to start a job with input arguments on Orchestrator using the http request activity from Studio. I already managed to start a job without input parameters using this string as the JsonPayload Argument:
“{startInfo: {ReleaseKey: ‘********-****-47a1-84d1-d51789b65331’,RobotIds: ,JobsCount: ‘1’,JobPriority: ‘Normal’,Strategy: ‘JobsCount’,InputArguments: ‘{}’}}”
I then altered the Json Payload to look like this to start the same job but this time with an input parameter:
“{startInfo: {ReleaseKey: ‘********-****-47a1-84d1-d51789b65331’,RobotIds: ,JobsCount: ‘1’,JobPriority: ‘Normal’,Strategy: ‘JobsCount’,InputArguments: {in_str_message:‘hello’}}}”
Unfortunately this did not work. I’m getting the following error message: “startJobsParameters must not be null”
What am I doing wrong. It might be an obvious issue with the stringified JSON because I do not have any experience with JSONs
Kind Regards