...
Table of Contents | |||||||||
---|---|---|---|---|---|---|---|---|---|
|
api.get
Sends get request to endpoint by specified url. Is asynchron method.
...
Expand | ||
---|---|---|
| ||
|
api.getDirect
Sends get request to endpoint on specified CMA API server by specified url. Is asynchron method.
...
Expand | ||
---|---|---|
| ||
|
api.post
Sends post request to endpoint by specified url. Is asynchron method.
...
Expand | ||
---|---|---|
| ||
|
api.postDirect
Sends post request to endpoint on specified CMA API server 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.
...
Expand | ||
---|---|---|
| ||
|
myVault.setGlobal
Writes key and value into Global myVault dictionary belonged to the account.
...
Expand | ||
---|---|---|
| ||
|
myVault.setOnComplete
Writes key and value into myVault dictionary belonged to the workflow.
...
Please see conditionas for “Workflow complete“ by this link
myVault.setGlobalOnComplete
Writes key and value into Global myVault dictionary belonged to the account.
...
Please see conditionas for “Workflow complete“ by this link
myVault.get
Reads value from myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
myVault.getGlobal
Reads value from Global myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
myVault.remove
Removes key-value pair from myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
myVault.removeGlobal
Removes key-value pair from Global myVault dictionary by specified key.
...
Expand | ||
---|---|---|
| ||
|
myVault.contains
Determines whether the myVault dictionary contains the specified key
...
Expand | ||
---|---|---|
| ||
|
myVault.containsGlobal
Determines whether Global myVault dictionary contains the specified key
...