{"id":19520368,"url":"https://github.com/informatiqal/qlik-saas-api","last_synced_at":"2026-04-18T03:31:25.779Z","repository":{"id":38189113,"uuid":"398512663","full_name":"Informatiqal/qlik-saas-api","owner":"Informatiqal","description":"Interact with Qlik Sense SaaS REST APIs","archived":false,"fork":false,"pushed_at":"2024-04-29T06:09:24.000Z","size":5595,"stargazers_count":0,"open_issues_count":15,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-04-30T00:13:57.159Z","etag":null,"topics":["api","qlik","qlik-sense","qliksense","rest","rest-api","saas","saas-api"],"latest_commit_sha":null,"homepage":"https://informatiqal.com/solutions/","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Informatiqal.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"ko_fi":"stefanstoichev"}},"created_at":"2021-08-21T09:02:32.000Z","updated_at":"2024-05-01T21:56:57.683Z","dependencies_parsed_at":"2023-02-08T05:15:40.020Z","dependency_job_id":"5f8e9c3f-c9eb-4075-a07a-b8bb3aac39e8","html_url":"https://github.com/Informatiqal/qlik-saas-api","commit_stats":{"total_commits":165,"total_committers":4,"mean_commits":41.25,"dds":0.5757575757575757,"last_synced_commit":"5adacb0ecb4e556ef1ef21ef20c320c4782c9cf0"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Informatiqal%2Fqlik-saas-api","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Informatiqal%2Fqlik-saas-api/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Informatiqal%2Fqlik-saas-api/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Informatiqal%2Fqlik-saas-api/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Informatiqal","download_url":"https://codeload.github.com/Informatiqal/qlik-saas-api/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240768262,"owners_count":19854424,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","qlik","qlik-sense","qliksense","rest","rest-api","saas","saas-api"],"created_at":"2024-11-11T00:25:12.880Z","updated_at":"2026-04-18T03:31:25.749Z","avatar_url":"https://github.com/Informatiqal.png","language":"TypeScript","funding_links":["https://ko-fi.com/stefanstoichev"],"categories":[],"sub_categories":[],"readme":"# Qlik Sense SaaS REST API\n\nNode.js module to interact with Qlik Sense SaaS API\n\n## UNDER DEVELOPMENT\n\n### NOT AFFILIATED WITH QLIK\n\n## Installation\n\n`npm install qlik-saas-api`\n\n\u003e **Note**\n\u003e Node version \u003e= 16.0.0\n\n\u003e **Note**\n\u003e Please open and issue if you are experiencing problems with the tabular reporting related methods - sharing tasks, report templates and report filters. The API itself is quite complicated and its hard to test and verify\n\n## Authentication\n\nAt this moment only JWT authentication is supported\n\n## Usage\n\nInitialize the client\n\n```javascript\nimport { QlikSaaSApi } from \"qlik-saas-api\";\n\nconst saasApi = new QlikSaaSApi.client({\n  host: \"tenant-url\",\n  authentication: {\n    token: \"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9...\",\n  },\n});\n```\n\nList of available methods:\n![Methods](./images/methods.png)\n\nList of apps methods:\n![Apps-Methods](./images/apps-methods.png)\n\nDetails for an app:\n![Apps-Methods](./images/app-details.png)\n\n## Methods\n\nFull list of available methods can be found [here](https://informatiqal.github.io/qlik-saas-api/modules.html)\n\n## Breaking changes\n\n### After v0.10.0\n\nPrior `v0.10.0` some methods were expecting named parameters and some were expecting the arguments to be an object. From `v0.10.0` onwards all public methods will expect their arguments to be an object.\n\nOld:\n\n```javascript\nasync get(id: string) { ... }\n```\n\nNew:\n\n```javascript\nasync get(arg: { id: string }) { ... }\n```\n\nThe new way of calling these methods will be:\n\n```javascript\nawait something.get({ id: \"some-id here\" })\n```\n\nInstead of:\n\n```javascript\nawait something.get(\"some-id here\")\n```\n\n### In the future v2.0\n\nBreaking changes will be introduced in the future v2+ of the package\n\n- All methods that require arguments will expect the arguments to be passed as an object\n\n  Current:\n\n  ```javascript\n  let updateResponse = await app.addToSpace(\"space-id-here\");\n  ```\n\n  New:\n\n  ```javascript\n  let updateResponse = await app.addToSpace({ spaceId: \"space-id-here\" });\n  ```\n\n  There are two reasons for that:\n\n  - consistency - the other Qlik REST API packages (Repository, Proxy etc.) are using the same approach\n  - easier to use this package as part of [Automatical](https://github.com/Informatiqal/automatiqal) and [Automatical-CLI](https://github.com/Informatiqal/automatiqal-cli)\n\n- At the moment some methods are returning the details instead of the instance. Code review will be performed and for these methods the return will be changed to class instance\n\n\u003e **Note**\n\u003e In order to avoid usage issues the package will be released in two versions - v1+ and v2+. All new features, fixes, patches etc will be applied to both versions. v2+ will be the default version and v1+ will be installed with:\n\u003e\n\u003e `npm install qlik-saas-api@v1`\n\n## Rate limit\n\nFrom 01/11/2022 Qlik is introducing rate limits when using SaaS REST API. If the response is with status 429 then the rate limit is reached and the script have to wait before continue.\n\n(from community.qlik)\n| Tier | Limit | Description |\n| ------- | --------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------- |\n| Tier 1 | 600+ per minute | Supports majority of requests for data consumption with generous bursting. |\n| Tier 2 | 60+ per minute | Create, update, and delete resource endpoints with occasional bursts of more requests. |\n| Special | Varies | Rate limiting conditions are unique for methods with this tier. Consult the method's documentation to better understand its rate limiting conditions. |\n\nFor more information please check these links:\n\n- [qlik.dev](https://qlik.dev/basics/rate-limiting)\n- [qlik community post 1](https://community.qlik.com/t5/Official-Support-Articles/Qlik-Cloud-API-rate-limits-enforced-starting-on-November-1st/ta-p/1991382)\n- [qlik community post 2](https://community.qlik.com/t5/Support-Updates/Important-Changes-to-Qlik-Cloud-REST-API-starting-November-1st/ba-p/1991505)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finformatiqal%2Fqlik-saas-api","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finformatiqal%2Fqlik-saas-api","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finformatiqal%2Fqlik-saas-api/lists"}