Can we update the specific content of a queue item while it is in progress? I used the Orchestrator HTTP request, json payload to update the queue item.
It throws an error: {“message”:“Only New, Failed and Abandoned queue items are editable”,“errorCode”:1000,“traceId”:“00-89697a780a4acf9c8b664b4f992a5c7d-5757b86fe881210e-01”}
Yes, I used the API to update the queue item but however it throws an error stating: It throws an error: {“message”:“Only New, Failed and Abandoned queue items are editable”,“errorCode”:1000,“traceId”:“00-89697a780a4acf9c8b664b4f992a5c7d-5757b86fe881210e-01”}
You’ll have to wait until after you have set it to Success or Failed to update it.
In case it’s why you’re trying to update the queue item during the process, you can add keys/values to SpecificContent just like any normal dictionary with an Assign. You don’t have to update the queue item in the queue.
No, you cannot update specific content while it’s in In Progress. If you want to update anything while bot is processing any queueItem, you can update it in your queueitem variable at code level. Remember it will be temporary update or it will not reflect to queue item.
Once execution finished you can then update it to Orchestrator Queue as well.