Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Discussion board where members can learn more about Integration, Extensions and API’s for Qlik Sense.
Here's an example using the library QlikSenseRestClient https://www.nuget.org/packages/QlikSenseRestClient/
var url = "<tenant url>";
var apiKey = "<api key>";
var appPath = @"C:\path\to\app.qvf";
var client = new RestClient(url);
client.AsApiKeyViaQcs(apiKey);
var appFile = File.ReadAllBytes(appPath);
var rsp = client.Post<JToken>("/api/v1/apps/import", appFile);
Console.WriteLine(rsp);