...
Table of Contents | ||||||
---|---|---|---|---|---|---|
|
api.get
Sends get request to endpoint by specified url. Is asynchron method.
...
Description | Workflow level | Account level |
---|---|---|
Writes key and value into myVault dictionary | ||
Writes key and value into myVault dictionary on the workflow complete event | ||
Reads value from myVault dictionary by specified key | ||
Removes key-value pair from myVault dictionary by specified key | ||
Determines whether the myVault dictionary contains the specified key |
myVault.set
Writes key and value into myVault dictionary belonged to the workflow.
...
Writes key and value into myVault dictionary belonged to the workflow.
This method differs from myVault.set method in “saving into myVault is deferred” condition and will be executed on workflow complete event.
...
Please also see session.vault by this link
Please see conditionas for “Workflow complete“ by this link
...
Writes key and value into Global myVault dictionary belonged to the account.
This method differs from myVault.setGlobal method in “saving into Global myVault is deferred” condition and will be executed on workflow complete event.
...
Please also see session.vaultGlobal by this link
Please see conditionas for “Workflow complete“ by this link
...
when processed block was stopped programmaly with fx.stopAfterThisBlock(true).
...
session.vault is an object of keys-value pairs which was set by myVault.setOnComplete() method and which will be moved into myVault on workflow complete event.
...
session.vaultGlobal is an object of keys-value pairs which was set by myVault.setGlobalOnComplete() method and which will be moved into Global myVault on workflow complete event.
...
Canvas provides just 1 method which can be used in block JS-code, it is getVariables().
getVariables()
Returns array of block variables. No parameters.
...