openapi: 3.1.0 info: title: Qlik Sense Enterprise Qlik Sense Service About Content Library API description: REST API for retrieving product information about a Qlik Sense site, including system details, installed components, external URLs, and third-party software information. The About Service API provides read-only endpoints that return JSON-formatted information about the Qlik Sense deployment. version: 2025.11.0 contact: name: Qlik Support url: https://community.qlik.com/ license: name: Proprietary url: https://www.qlik.com/us/legal/terms-of-use x-providerName: Qlik x-serviceName: qlik-sense-about-service servers: - url: https://{server}/api/about/v1 description: About Service API via HTTPS variables: server: default: localhost description: Qlik Sense server hostname security: - xrfkey: [] tags: - name: Content Library description: Manage shared and app-specific content libraries paths: /contentlibrary: get: operationId: getContentLibraries summary: Qlik Sense Enterprise List content libraries description: Retrieves a list of all content libraries in condensed format. tags: - Content Library parameters: - $ref: '#/components/parameters/XrfKeyParam' - $ref: '#/components/parameters/FilterParam' - $ref: '#/components/parameters/PrivilegesParam' responses: '200': description: List of content libraries returned successfully content: application/json: schema: type: array items: $ref: '#/components/schemas/ContentLibraryCondensed' '401': $ref: '#/components/responses/Unauthorized' /contentlibrary/{id}/uploadfile: post: operationId: uploadContentLibraryFile summary: Qlik Sense Enterprise Upload file to content library description: Uploads a file to a content library. The file is sent as the request body and the relative path within the library is specified as a query parameter. tags: - Content Library parameters: - $ref: '#/components/parameters/XrfKeyParam' - $ref: '#/components/parameters/IdParam' - name: externalpath in: query required: true description: Relative path within the content library for the uploaded file schema: type: string - name: overwrite in: query description: Whether to overwrite an existing file schema: type: boolean default: false requestBody: required: true content: application/octet-stream: schema: type: string format: binary responses: '200': description: File uploaded successfully '404': $ref: '#/components/responses/NotFound' '401': $ref: '#/components/responses/Unauthorized' /contentlibrary/{id}/deletecontent: delete: operationId: deleteContentLibraryFile summary: Qlik Sense Enterprise Delete file from content library description: Deletes a file from a content library by its external path. tags: - Content Library parameters: - $ref: '#/components/parameters/XrfKeyParam' - $ref: '#/components/parameters/IdParam' - name: externalpath in: query required: true description: Relative path of the file to delete within the content library schema: type: string responses: '204': description: File deleted successfully '404': $ref: '#/components/responses/NotFound' '401': $ref: '#/components/responses/Unauthorized' components: responses: Unauthorized: description: Authentication failed. The request lacks valid authentication credentials or the Xrfkey header/parameter is missing or mismatched. content: application/json: schema: $ref: '#/components/schemas/Error' NotFound: description: The requested entity was not found. content: application/json: schema: $ref: '#/components/schemas/Error' parameters: FilterParam: name: filter in: query required: false description: 'Filter expression using the syntax: property operator value. Supports operators like eq, ne, so, ew, sw. Example: name eq ''MyApp''' schema: type: string IdParam: name: id in: path required: true description: Unique identifier (GUID) of the entity schema: type: string format: uuid PrivilegesParam: name: privileges in: query required: false description: Whether to append privilege information to the returned entities. schema: type: boolean default: false XrfKeyParam: name: Xrfkey in: query required: true description: Cross-site request forgery prevention key. Must be 16 arbitrary characters matching the X-Qlik-Xrfkey header value. schema: type: string minLength: 16 maxLength: 16 schemas: ContentLibraryCondensed: type: object properties: id: type: string format: uuid name: type: string privileges: type: array items: type: string Error: type: object properties: message: type: string description: Human-readable error message securitySchemes: xrfkey: type: apiKey in: header name: X-Qlik-Xrfkey description: Cross-site request forgery prevention key. Must be 16 arbitrary characters and must match the Xrfkey query parameter.