JSON
JSON actions provide tools for manipulating JSON objects and arrays within skill scripts. You can read and update values by key, and perform array operations like appending, retrieving, replacing, and deleting items by index or JSONPath.
Available Actions
| Action | Description |
|---|---|
| GetValueJSON | Get a value from a JSON object by key. |
| UpdateValueJSON | Update a value in a JSON object by key. |
| AsStringJSON | Convert a JSON object to a string representation. |
| AppendItemsArrayJSON | Append items to a JSON array. |
| GetItemsArrayByIndexesJSON | Retrieve array items by their indexes. |
| GetItemsArrayByPathJSON | Retrieve array items by JSONPath. |
| ReplaceItemsArrayByIndexesJSON | Replace array items at specific indexes. |
| ReplaceItemsArrayByPathJSON | Replace array items matching a JSONPath. |
| DeleteItemsArrayByIndexesJSON | Delete array items at specific indexes. |
| DeleteItemsArrayByPathJSON | Delete array items matching a JSONPath. |
| GetIndexesOfItemsArrayJSON | Find the indexes of items in a JSON array. |
Updated 9 days ago
