App Import Profiles

On this page

Overview

An App Import Profile tells to inProcess App Operations which Qlik Applications it should upload and how they should be named in the target Qlik Sense Server or Qlik Cloud Tennant.

All App Import Profiles should be stored inside the AppImportProfiles node:

"AppImportProfiles": [ { "ProfileName": "", "QVFSourceFolder": "", "AppListJsonFileName": "", "AppNamePattern": "", "SkipConfirmation": false } ]

The AppImportProfiles attributes are:

Use \ to escape special characters on Windows Paths. For example:
C:\MyFolder should be replaced with C:\\MyFolder

Store a single App Import Profile

App Import Profile created to import all Qlik Applications from a specific folder keeping the original QVF file names:

"AppImportProfiles": [ { "ProfileName": "MIGRATION", "QVFSourceFolder": "MyMigrationWinFolder", "AppListJsonFileName": "", "AppNamePattern": "", "SkipConfirmation": false } ]

Store multiple App Import Profiles

The example below shows how to stored multiple App Import Profiles.
One App Import Profile created to import all Qlik Applications from a specific folder keeping the original QVF file names and another Profile to import all QVF files listed in the C:\MyBackupWinFolder\AppList.json file renaming the Qlik Applications following the AppNamePattern pattern:

"AppImportProfiles": [ { "ProfileName": "MIGRATION", "QVFSourceFolder": "MyMigrationWinFolder", "AppListJsonFileName": "", "AppNamePattern": "", "SkipConfirmation": false }, { "ProfileName": "BACKUP", "QVFSourceFolder": "", "AppListJsonFileName": "C:\\MyBackupWinFolder\\AppList.json", "AppNamePattern": "[{year}-{month}-{day}] {stream} - {app} - Restored", "SkipConfirmation": false } ]