Hello @thebenrobb,I am not sure to interpret correctly the part with
custom code. Do you mean that we can return a promise from any of our
custom code section (Codition, Event, Actions) so the code in an action
could look like: var promiseObj = new
Promise(function(resolve,reject){myAPIresult = fetch('myAPIstuff');
//some async functions.evarXX = myLocation;if(myLocation != ""){
resolve('Nice');}else{ reject('good try');}})return promiseObj I am
wondering if you are looking for a specific object...