Trigger client update from scheduled endpoint?

is it possible to have a scheduled endpoint trigger update on the client?
Maybe I could create a $cache:updatedTimeStamp in the endpoint, and in another do a check to see if

if($session:LastUpdate < $cache:updateTimeStamp) {
sync-udelement -id X
$session:LastUpdate = $cache:updateTimeStamp
}
else {
“No update”
}

would this work? or a better way ? :slight_smile:

Yeah currently not supported. But your idea of using a cache variable should work in the mean time.