Integration, Extension & APIs

Discussion board where members can learn more about Integration, Extensions and API’s for Qlik Sense.

Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION

Who Me Too'd this solution

Øystein_Kolsrud
Employee
Employee

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);

 

 

View solution in original post

Who Me Too'd this solution