The counterpart of Qlik Repo API this NodeJS/browser package interacts with Qlik Sense SaaS API. This package aims to cover all exposed methods (experimental are not included).
Installation
npm install qlik-saas-api
Usage example
The first task is to prepare the client by providing the tenant host and authentication token
import { QlikSaaSApi } from "qlik-saas-api";
const saasApi = new QlikSaaSApi.client({
host: "tenant-url",
authentication: {
token: "eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...",
},
});
Once the client is initialized then it can start making requests against Qlik SaaS.
The package exposes its own methods and properties:

Each entity will subsequently have it's own methods:

The entity will also have (at least) details
property available. This property will have all the read-only data:

Complete documentation with list of all methods and properties can be found at the project's dev documentation:
As usual the package code is available at GitHub: