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

ActionDescription
GetValueJSONGet a value from a JSON object by key.
UpdateValueJSONUpdate a value in a JSON object by key.
AsStringJSONConvert a JSON object to a string representation.
AppendItemsArrayJSONAppend items to a JSON array.
GetItemsArrayByIndexesJSONRetrieve array items by their indexes.
GetItemsArrayByPathJSONRetrieve array items by JSONPath.
ReplaceItemsArrayByIndexesJSONReplace array items at specific indexes.
ReplaceItemsArrayByPathJSONReplace array items matching a JSONPath.
DeleteItemsArrayByIndexesJSONDelete array items at specific indexes.
DeleteItemsArrayByPathJSONDelete array items matching a JSONPath.
GetIndexesOfItemsArrayJSONFind the indexes of items in a JSON array.