Skip to main content
Question

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

  • December 30, 2025
  • 0 replies
  • 6 views

Forum|alt.badge.img

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.”