Reload v4.3.0
Trigger app/task reload
POST /api/reload/trigger
Triggers an app (cloud) or task (onPrem) reload based on the connected Qlik system.
Body:
| Field | Value | Type |
|---|---|---|
id | Id of the app/task | string |
partial(optional) | partial reload | boolean |
weight(optional) | priority | number (1-10) |
variables(optional) | script variables | Array [{key:string, value:string}] |
Example:
Example
{
"id":"0ea90134-09c0-4c50-a0f5-a9bd677e61cc",
"partial":false,
"weight":1,
"variables":[
{
"key":"vVariable",
"value":"123"
}
]
}Get task list (onPrem only)
GET /api/reload/taskList
Get information of all tasks, returns a list of QMC TaskOperational Objects.
Old Task api
List Task Info
GET /api/task/info
Get information of all tasks, returns a list of QMC TaskOperational Objects.
Get Task Info
GET /api/task/info/{taskId}
Get information of a specific task, returns a list of QMC TaskOperational Objects (which should be 1).
Start reload task
POST /api/task/start
Body:
| Field | Value | Type |
|---|---|---|
taskId | Id of the task to start | string |
Example:
{
"taskId":"0ea90134-09c0-4c50-a0f5-a9bd677e61cc"
}Last updated on