I need to add new items into existing Queue in Orchestrator.
while perform the performer Bot, I need to add an new string value into existing queue( what ever the transaction am getting while perform).
how to do that?
Thanks in advance.
I need to add new items into existing Queue in Orchestrator.
while perform the performer Bot, I need to add an new string value into existing queue( what ever the transaction am getting while perform).
how to do that?
Thanks in advance.
Hey @manipreethi410,
You can use add to queue activity in the performer bot as well to add the item to the queue.
Thanks,
Sanjit
is it going to add new values into the same transaction?
You can add values to transactionItem.SpecificContent (which is just a regular dictionary) while your process is running but it won’t (and you can’t) actually add the values to the item that’s in the queue.
is their any other method to add?
Might be able to do it through the Swagger API but I don’t know for sure.
thank you.