get_app_variables
Retrieve and filter application variables in Qlik Sense, separating script and UI sources, with pagination and wildcard search for precise results.
Instructions
Return variables split by source (script/ui) with pagination and wildcard search.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
app_id | Yes | Application GUID | |
case_sensitive | No | Case sensitive matching for search_string | |
created_in_script | No | Return only variables created in script (true/false). If omitted, return both | |
limit | No | Max variables to return (default: 10, max: 100) | |
offset | No | Offset for pagination (default: 0) | |
search_number | No | Wildcard search among numeric variable values (* and % supported) | |
search_string | No | Wildcard search by variable name or text value (* and % supported), case-insensitive by default |
Input Schema (JSON Schema)
{
"properties": {
"app_id": {
"description": "Application GUID",
"type": "string"
},
"case_sensitive": {
"default": false,
"description": "Case sensitive matching for search_string",
"type": "boolean"
},
"created_in_script": {
"description": "Return only variables created in script (true/false). If omitted, return both",
"type": [
"boolean",
"integer",
"string"
]
},
"limit": {
"default": 10,
"description": "Max variables to return (default: 10, max: 100)",
"type": "integer"
},
"offset": {
"default": 0,
"description": "Offset for pagination (default: 0)",
"type": "integer"
},
"search_number": {
"description": "Wildcard search among numeric variable values (* and % supported)",
"type": "string"
},
"search_string": {
"description": "Wildcard search by variable name or text value (* and % supported), case-insensitive by default",
"type": "string"
}
},
"required": [
"app_id"
],
"type": "object"
}