WRITE
Adds the key and value to a JSON object in the outbox. The path to the key will be created as needed.
Syntax
=WRITE(Key, Value, [Type], [TTL])
Arguments
Name | Type | Description |
---|---|---|
Key | String | A key to a data item, that should be written. The key is usually created by using the OUTBOXMETADATA or OUTBOXDATA utility functions. The key consists of the path to the item within the JSON object. |
Value | Value | Value to assign to key. |
Type (optional) | ValueType | Type of Value. Options: "String" "Number" "Boolean" "Array" "Dictionary" "Json" "JsonRoot" |
TTL (optional) | Number | The "time to live" period in seconds. If the specified period expires the corresponding message will be removed from the outbox. Default is indefinitely. |
Return
Type | Description |
---|---|
String | The last part of the key of the data value to write. |
Examples
Formula | Result | Comment |
---|---|---|
| Outbox | Example to write a value to a JSON object in the outbox. |
| You can also direct data from the Inbox into the Outbox. In this example the “Units” array from the Inbox is automatically transferred to the Outbox. | |
| Outbox | Pro tip: If you want to automatically create an array, use -1 as the last OUTBOXDATA() parameter. This way the array will increment starting from 0. |