Skip to content

Changelog

Learn about new developer features and improvements.

New API - Qlik Application Automation

Introducing Qlik Application Automation

Happy to announce the release of a new API: Qlik Application Automation.

Qlik Application Automation is a visual no-code approach to connecting applications. The API helps you easily build automated analytics and data workflows.

Examples

Here are a few examples of what you can expect to do with the Qlik Application Automation API:

  • Create an automation.
Terminal window
curl "https://your-tenant.us.qlikcloud.com/api/v1/automations" \
-X POST \
-H "Authorization: Bearer <API-key>" \
-H "Content-type: application/json" \
-d '{
"name":"string",
"description":"string",
"workspace":{},
"state":"available",
"schedules":[
{
"startAt":"2022-01-01 00:00:00",
"stopAt":"2022-12-01 00:00:00",
"interval":30,
"timezone":"Europe/Stockholm"
}
]
}'
  • Enable an automation.
  • Retrieve and update automation settings.
  • Copy an automation.
  • Create a run.
Terminal window
curl "https://your-tenant.us.qlikcloud.com/api/v1/automations/{id}/runs" \
-X POST \
-H "Authorization: Bearer <API-key>" \
-H "Content-type: application/json" \
-d '{
"id":"automationID",
"context":"editor",
"inputs":{}
}'
  • Retrieves a run.
  • Retry a run
  • Stop running an automation
  • Export a run
  • Move automation to another user

For more information you can see API reference