Problem to start job In Orchestrator

Hi @papaass,

If you want to start a job using HTTP request you have to know the release key associated with that process, but also the Robots’s ids where the process should be executed. (In addition you must be authenticated in the orchestrator)

So the previous steps for starting a job are to obtain the accessToken, the release key and the robots’s id.

Finally the start job request should be similar to:

{
“startInfo”: {“ReleaseKey”: “1cc3318a-01da-478c-bb07-ec1bf6dc52a2”,
“RobotIds”: [
465
],
“NoOfRobots”: 0,
“Strategy”: “Specific”
}
}

This is a project sample (it contains other methods like getSchedules and getProcesses) but I hope It will help you.
TEST_ORCHESTRATOR_API.zip (15.8 KB)

take a look at this:

Please let me know if you need more information!

Regards,
Susana

2 Likes