Skip to main content
Announcements
YOUR OPINION MATTERS! Please take the Qlik Experience survey you received via email. Survey ends June 14.
cancel
Showing results for 
Search instead for 
Did you mean: 
catalin
Partner - Contributor III
Partner - Contributor III

NET SDK - Open app, modify some object, publish - how to?

Hi, Qlikheads!

 

I'm using NET SDK for QS interaction.

Let's say I open a Qlik Sense app, and I create and link some master objects. I attach some properties to these master objects, like tags for example.

The app is opened from a stream and its a published application.

What are the correct steps to ensure that the app is saved / published correctly after the modifications?

I see the App endpoint has some methods like SaveAs or Publish. 

If the application doesn't change its name, it is published on top of the original app?

 

Tks a lot for any hints.

Catalin

 

Labels (2)
1 Solution

Accepted Solutions
Øystein_Kolsrud
Employee
Employee

I don't think you can create master objects in a published app. You'll just get an "Access denied" error if you try. I would say the way to go about this is to create a copy of the app, make the modifications there, then do a republish of the app using this endpoint:

https://help.qlik.com/en-US/sense-developer/February2024/APIs/RepositoryServiceAPI/index.html?page=9...

View solution in original post

2 Replies
Øystein_Kolsrud
Employee
Employee

I don't think you can create master objects in a published app. You'll just get an "Access denied" error if you try. I would say the way to go about this is to create a copy of the app, make the modifications there, then do a republish of the app using this endpoint:

https://help.qlik.com/en-US/sense-developer/February2024/APIs/RepositoryServiceAPI/index.html?page=9...

catalin
Partner - Contributor III
Partner - Contributor III
Author

Thanks a lot!