Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Yogesh2020
Partner - Contributor II
Partner - Contributor II

[Feature Request] REST API to enable "Allow large apps" on a space

Hi Qlik Community,

The Problem

I'm an OEM partner using Qlik Cloud Analytics Premium. We automate tenant and space provisioning entirely through the REST API. However, there is one step we cannot automate: enabling Large App Support on a space.

Currently, the only way to enable "Allow large apps" is through the Administration activity center UI (Spaces → Edit space → Allow large apps checkbox). The Spaces REST API does not expose this setting in any form:

POST /api/v1/spaces — only accepts name, type, description
PUT /api/v1/spaces/{id} — only accepts name, ownerId, description
PATCH /api/v1/spaces/{id} — only supports paths /name, /ownerId, /description

What I Need

A supported way to programmatically enable Large App Support on a space. For example:


// Option A: Add to PATCH /api/v1/spaces/{id}
[{ "op": "replace", "path": "/allowLargeApps", "value": true }]

// Option B: Dedicated endpoint
PUT /api/v1/spaces/{id}/settings/large-app-support
{ "enabled": true }

Why It Matters

Manual UI steps don't scale for OEM partners provisioning many tenants
Introduces operational delays and human error in onboarding
Every other space operation (create, rename, change owner) is available via API - this is the only gap

Questions for the Community

Has anyone found a supported way to automate this? (Not undocumented payload fields)
Is there a Qlik Automate block that can toggle this setting?
Is this on the Qlik roadmap?
Would appreciate input from Qlik team members or other OEM partners facing the same limitation.

Thanks!

Labels (3)
0 Replies