Skip to main content
Cadet | Tier 2
December 30, 2025
Question

Bot Execution API - Don't send information of the UPDATE (running) status bot's

  • December 30, 2025
  • 1 reply
  • 89 views

Hi,
I was using the Bot Execution Orchestrator API v3 to retrieve how many minutes my bots have been running and how many bots were queued. However, since November 6, the “UPDATE” tag, which I used to obtain information about bots that are currently executing, has stopped working.

I was using the following request body:

{
  "filter": {
    "operator": "or",
    "operands": [
      { "operator": "eq", "field": "status", "value": "UPDATE" },
      { "operator": "eq", "field": "status", "value": "QUEUED" }
    ]
  },
  "page": {
    "offset": 0,
    "length": 10000
  }
}

It worked, but since November 6, the API response has been returning only information about bots with the status “QUEUED.”

1 reply

alfonsuAuthor
Cadet | Tier 2
January 5, 2026

Someone?