How to set a queue item transaction status to successful via api
Issue Description:
How to set a queue item transaction status to successful via api
Resolution:
1. Run /odata/Queues/UiPathODataSvc.StartTransaction to start the transaction.
2. Get the ID of the transaction (ID) field.
3. Run /odata/QueueItems(ID_from_step2)/UiPathODataSvc.SetTransactionProgress with the body being:
{
"progress": "InProgress"
}
4. Run /odata/Queues(ID_from_step2)/UiPathODataSvc.SetTransactionResult with the body being just the one below:
{
"transactionResult": {
"IsSuccessful": true,
"Output": {}
}
}