{"id":26481643,"url":"https://github.com/withdave/qc-specs","last_synced_at":"2026-03-10T05:11:18.726Z","repository":{"id":282134171,"uuid":"946235944","full_name":"withdave/qc-specs","owner":"withdave","description":"Automated spec retrieval of Qlik Cloud REST APIs documented on qlik.dev.","archived":false,"fork":false,"pushed_at":"2026-01-22T06:37:41.000Z","size":1021,"stargazers_count":5,"open_issues_count":0,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2026-01-22T21:17:09.609Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://qlik.dev","language":null,"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/withdave.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-03-10T20:32:11.000Z","updated_at":"2026-01-22T06:37:32.000Z","dependencies_parsed_at":"2025-03-13T01:27:34.066Z","dependency_job_id":"08f55ea6-1338-4ea7-be80-c2cc2875c718","html_url":"https://github.com/withdave/qc-specs","commit_stats":null,"previous_names":["withdave/qc-specs"],"tags_count":32,"template":false,"template_full_name":null,"purl":"pkg:github/withdave/qc-specs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withdave%2Fqc-specs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withdave%2Fqc-specs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withdave%2Fqc-specs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withdave%2Fqc-specs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/withdave","download_url":"https://codeload.github.com/withdave/qc-specs/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/withdave%2Fqc-specs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28910962,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-30T08:15:08.179Z","status":"ssl_error","status_checked_at":"2026-01-30T08:14:31.507Z","response_time":66,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":[],"created_at":"2025-03-20T03:30:00.700Z","updated_at":"2026-01-30T10:03:35.753Z","avatar_url":"https://github.com/withdave.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# qc-specs\n\nThis repo pulls published REST specifications for Qlik Cloud from [Qlik Developer](https://qlik.dev) each night and syncs to a Postman collection at [Qlik Cloud APIs](https://www.postman.com/qlik-api/api-reference/overview).\n\n## Contents\n\n### `specs/` Folder\nIndividual API specification files for published Qlik Cloud services.\n\n### `consolidated/` Folder\n- `qlik-cloud.json` - Complete OpenAPI specification combining all APIs into a single file.\n\n## Using in Postman\n\nIf you wish to be able to sync to the latest release, fork the sync'd collection from [Qlik Cloud APIs](https://www.postman.com/qlik-api/api-reference/overview).\n\nTo import manually:\n\n1. **Download** the consolidated specification: `consolidated/qlik-cloud.json`\n2. **Open Postman** and click \"Import\"\n3. **Select** the downloaded `qlik-cloud.json` file\n4. **Import** - Postman will create a new collection with all Qlik Cloud APIs\n\n## Authentication Options\n\nTo make your credentials more secure, and to keep them portable, it's recommended\nto use environments to store them. Both options below are supported for the `/api`\npath in the collection, while the `/login` and `/oauth` paths require different\npatterns.\n\n### API Key Authentication\n\nFor simple integration and testing where you want to call endpoints with the permissions\nof your interactive user:\n\n1. Generate an API key at https://qlik.dev/authenticate/api-key/generate-your-first-api-key/\n2. In Postman, set the authentication type to \"Bearer Token\"\n3. Create an environment in Postman:\n  - `baseUrl`: The tenant URL, in format `https://tenantname.region.qlikcloud.com`\n  - `apiKey`: The API key for your user\n4. Update the `Authorization` configuration for the `/api` path to `Bearer Token`, and set\n   the value of `Token` to `{{apiKey}}`.\n\n### OAuth2 Machine-to-Machine Authentication\n\nFor production applications and automated systems, or where you want fine grain control\nof scopes and permissions:\n\n1. Create an OAuth2 client at https://qlik.dev/authenticate/oauth/create/create-oauth2-client\n2. Configure the client with appropriate scopes\n3. Create an environment in Postman:\n  - `baseUrl`: The tenant URL, in format `https://tenantname.region.qlikcloud.com`\n  - `clientId`: The client ID for the Qlik Cloud OAuth M2M client\n  - `clientSecret`: The client secret for the Qlik Cloud OAuth M2M client\n4. Update the `Authorization` configuration for the `/api` path to `OAuth 2.0`, with:\n  - `Add auth data to` set to `Request Headers` (default)\n  - `Header Prefix` set to `Bearer` (default)\n  - `Token Name` set to a string that explains to you what the token is for (e.g. `Qlik Cloud`)\n  - `Grant type` set to `client_credentials` (default)\n  - `Access Token URL` set to `{{baseUrl}}/oauth/token`\n  - `Client ID` set to `{{clientId}}`\n  - `Client Secret` set to `{{clientSecret}}`\n  - `Scope` set to match hat you configured in 2, e.g. `user_default admin_classic`\n  - `Client Authentication` set to `Send client credentials in body`\n5. Click `Get New Access Token`, and follow the prompt\n6. Ensure `Auto-refresh Token` is toggled to on\n\n## Usage\n\nThe consolidated OpenAPI specification can be used with:\n\n- **Postman** (import as OpenAPI specification, or fork existing)\n- **OpenAPI generators** for client libraries\n- **API documentation tools** like Swagger UI, Redoc\n- **API testing tools** like Insomnia\n- **Any OpenAPI-compatible tool**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithdave%2Fqc-specs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwithdave%2Fqc-specs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwithdave%2Fqc-specs/lists"}