Hi @Wenzel_B
Cool suggestion. Our team will have a look.
In the meantime, you can do this:
- create a special boolean asset “IsUsed”
- now, in your process, fetch it and check if it is true; if it is, it would mean that the asset is being used and the current process should put on a delay and retry in a set amount of time
- if it is false, the process should fetch the actual credentials and set the IsUsed asset as true - this should lock the asset for other proecess intol this one is done
This is a neat way to implement your use case.