Starting a job as if starting it from the UiPath Assistant on the robot's local

I’m trying to find a way to start background processes from Orhcestrator API like I started it from the assistant on the robot’s local machine

{
  "startInfo": {
    "ReleaseKey": "releaseKeyxyz",
    "Strategy": "Specific",
    "RobotIds": [
      robotIdxyz
    ],
    "MachineSessionIds": [
      0
    ],
    "NoOfRobots": 0,
    "JobsCount": 0,
    "Source": "Manual"
  }
}

This usually starts my jobs but I want to find if I can do it from the assistant itself.
There are many parameters in “odata/Jobs/UiPath.Server.Configuration.OData.StartJobs” API but I can’t seem to find my way around them. Is there keyword I can change in order to achieve this? Thanks in advance

@hakankadakal98

The point here is starting from assistant it would not be unattended and when you start unattended it is not done from assistant …both are mutually exclusive

you cannot run as from assistant because it runs under user session and what you want is you havign more control than the user working on the system

cheers

I’m aware of the situation and why we wouldn’t do this normally, I was curious for a specific reason. I couldn’t do it from Orchestrator API but I was able to write a powershell script and run this script through my own controller.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.