list_operation
VariablesTransforms lists by pushing, popping, filtering, or joining values.
Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
variable | string | Yes | — | List variable name |
operation | string | Yes | — | List operation name
Options: create, push, pop, split_string |
value | string | No | | Value for push or string for split_string |
delimiter | string | No | , | Delimiter for split_string |
Usage Example
RTILA X PROJECT JSON
{
"command": "list_operation",
"params": {
"variable": "extracted_urls",
"operation": "push",
"value": "${current_url}",
"delimiter": ","
}
}
Related Scenarios
- View /scenarios/variables/3 · variables
Related Learning Articles
Was this helpful?
Thank you for your feedback!