Qlik Cloud Users API

The Users API from Qlik Cloud — 6 operation(s) for users.

Operations 9

GET /api/v1/users List users #
POST /api/v1/users Create an invited user #
GET /api/v1/users/{userId} Get user #
PATCH /api/v1/users/{userId} Update user #
DELETE /api/v1/users/{userId} Delete user #
GET /api/v1/users/me Get current user #
GET /api/v1/users/actions/count Count users #
POST /api/v1/users/actions/filter Filter users #
POST /api/v1/users/actions/invite Invite users #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/qlik-cloud-users-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

qlik-cloud-users-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Qlik Cloud REST Api Keys Users API
  description: Qlik Cloud REST API for managing users, apps, spaces, groups, data connections, reports, OAuth clients, API keys, and webhooks.
  version: 1.0.0
  x-generated-from: https://qlik.dev/apis/rest
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://your-tenant.region.qlikcloud.com
  description: Qlik Cloud tenant
security:
- bearerAuth: []
tags:
- name: Users
paths:
  /api/v1/users:
    get:
      summary: List users
      operationId: listUsers
      responses:
        '200':
          description: User list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
    post:
      summary: Create an invited user
      operationId: createUser
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '201':
          description: User created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
  /api/v1/users/{userId}:
    parameters:
    - in: path
      name: userId
      required: true
      schema:
        type: string
    get:
      summary: Get user
      operationId: getUser
      responses:
        '200':
          description: User details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
    patch:
      summary: Update user
      operationId: updateUser
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: User updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
    delete:
      summary: Delete user
      operationId: deleteUser
      responses:
        '204':
          description: Deleted
      tags:
      - Users
  /api/v1/users/me:
    get:
      summary: Get current user
      operationId: getCurrentUser
      responses:
        '200':
          description: Current user
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
  /api/v1/users/actions/count:
    get:
      summary: Count users
      operationId: countUsers
      responses:
        '200':
          description: User count
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
  /api/v1/users/actions/filter:
    post:
      summary: Filter users
      operationId: filterUsers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: Filter result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
  /api/v1/users/actions/invite:
    post:
      summary: Invite users
      operationId: inviteUsers
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: Invitations sent
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Users
components:
  schemas:
    GenericResponse:
      type: object
      additionalProperties: true
    GenericRequest:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer