execution
execution.id
execution.idlet executionId = $execution.id;executionId = _execution.idexecution.resumeUrl
execution.resumeUrlexecution.customData
execution.customData// Set a single piece of custom execution data
$execution.customData.set("key", "value");
// Set the custom execution data object
$execution.customData.setAll({"key1": "value1", "key2": "value2"})
// Access the current state of the object during the execution
var customData = $execution.customData.getAll()
// Access a specific value set during this execution
var customData = $execution.customData.get("key")# Set a single piece of custom execution data
_execution.customData.set("key", "value");
# Set the custom execution data object
_execution.customData.setAll({"key1": "value1", "key2": "value2"})
# Access the current state of the object during the execution
customData = _execution.customData.getAll()
# Access a specific value set during this execution
customData = _execution.customData.get("key")Last updated
Was this helpful?