Skip to main content
Solved

Terminating bot executions remotely?

  • September 2, 2026
  • 2 replies
  • 14 views

Uzumaki
Forum|alt.badge.img+2

Hello,

I’m curious to hear if anyone has implemented a way to terminate a bot execution remotely. Python, powershell, killing processes and services, I’m interested to hear if anyone has had success with this. Unfortunately this isn’t available natively via the control room api, so I’d like to here from others on this.

I have a python script that terminates all “Automation Anywhere” processes running on a device. Unfortunately this has the side effect of disconnecting the bot runner device from the machine. Seeking clean methods with minimal side effects for terminating bot runs.


Thank you

Best answer by Aaron.Gleason

@Uzumaki What about the /v3/activity/manage API call? You would need the execution ID, but there is the ability to “stop_executions” by “execution_ids”.

2 replies

Aaron.Gleason
Automation Anywhere Team
Forum|alt.badge.img+6
  • Automation Anywhere Team
  • Answer
  • September 2, 2026

@Uzumaki What about the /v3/activity/manage API call? You would need the execution ID, but there is the ability to “stop_executions” by “execution_ids”.


Uzumaki
Forum|alt.badge.img+2
  • Author
  • Navigator | Tier 3
  • September 2, 2026

@Uzumaki What about the /v3/activity/manage API call? You would need the execution ID, but there is the ability to “stop_executions” by “execution_ids”.

Huh I didn’t even see that. That makes things a lot easier, thanks.