Bot Scenario Based

Hi,

I am using three Bots A, B and C. I want to run the Bot “c” as soon as the Bot “A”&“B” completes it.
Bot “c” should run after “A” and “B”.

How can we manage the bots ? Where we can the Manage? Please clarify.

Thanks in Advance.

Hi @Harsha_S1

Use orchestrator http requests to get if A and B are completed and then use a start job

Check this for api to get job status

https://docs.uipath.com/orchestrator/reference/api-references

Cheers

1 Like

Thanks Anil.

1 Like

Hi @Harsha_S1

Sorry to miss…you even have a get jobs to get the jobs and status… so you need to go with orch api now

If this resolves please mark solution so that others also can get help

Cheers

Do we need to use Orchestrator APIS or Triggers, Schedule to run the bot “c” as soon as the “A” and “B” completes?

Hi @Harsha_S1

No triggers or api…there is a start job activity…what you have to do is…

Use get jobs

  1. In bot A last step check if bot B is completed or not
  2. In bot B last step check if bot A is completed or not
  3. Also in both check if bot C is already started…if not then use start job to start bot C

Cheers

1 Like