Qlik Cloud Spaces API

The Spaces API from Qlik Cloud — 4 operation(s) for spaces.

Operations 9

GET /api/v1/spaces List spaces #
POST /api/v1/spaces Create space #
GET /api/v1/spaces/{spaceId} Get space #
PATCH /api/v1/spaces/{spaceId} Patch space #
PUT /api/v1/spaces/{spaceId} Update space #
DELETE /api/v1/spaces/{spaceId} Delete space #
GET /api/v1/spaces/{spaceId}/assignments List space assignments #
POST /api/v1/spaces/{spaceId}/assignments Create space assignment #
GET /api/v1/spaces/types List space types #

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-spaces-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-spaces-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Qlik Cloud REST Api Keys Spaces 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: Spaces
paths:
  /api/v1/spaces:
    get:
      summary: List spaces
      operationId: listSpaces
      responses:
        '200':
          description: Space list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
    post:
      summary: Create space
      operationId: createSpace
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '201':
          description: Space created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
  /api/v1/spaces/{spaceId}:
    parameters:
    - in: path
      name: spaceId
      required: true
      schema:
        type: string
    get:
      summary: Get space
      operationId: getSpace
      responses:
        '200':
          description: Space details
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
    patch:
      summary: Patch space
      operationId: patchSpace
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: Space patched
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
    put:
      summary: Update space
      operationId: updateSpace
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '200':
          description: Space updated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
    delete:
      summary: Delete space
      operationId: deleteSpace
      responses:
        '204':
          description: Deleted
      tags:
      - Spaces
  /api/v1/spaces/{spaceId}/assignments:
    parameters:
    - in: path
      name: spaceId
      required: true
      schema:
        type: string
    get:
      summary: List space assignments
      operationId: listSpaceAssignments
      responses:
        '200':
          description: Assignment list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
    post:
      summary: Create space assignment
      operationId: createSpaceAssignment
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenericRequest'
      responses:
        '201':
          description: Assignment created
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
  /api/v1/spaces/types:
    get:
      summary: List space types
      operationId: listSpaceTypes
      responses:
        '200':
          description: Type list
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenericResponse'
      tags:
      - Spaces
components:
  schemas:
    GenericResponse:
      type: object
      additionalProperties: true
    GenericRequest:
      type: object
      additionalProperties: true
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer