I want to change the queue transaction item status to InProgress using Python API calls.
I have tried multiple ways to do it but not getting expected result.
I have tried OData/UiPathOData.Svc.SetTransactionResult,
But this will set the status to Successful or Failed if the transaction status is already InProgress.
Also tried OData/UiPathOData.Svc.StartTransaction,
But this will add the transaction item and sets the status to InProgress. In real working scenario this won’t help as this will add item and immediately start the transaction.
My requirement is after getting the new transaction item from queue, Need an API call to change the status to InProgress.
I have tried this way but problem with this approach is It will create another transaction item with status InProgress having Specific Content data as null and Transaction item with New status remains in the Queue.