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: 
mgranillo
Specialist
Specialist

Bookmarks list with engine api explorer

I'm trying to get a list of bookmarks and the bookmark owners for a particular dashboard.  Is this possible?  I tried the engine API explorer but don't know how to use it very well.  

i found this in the documentation but cannot implement: https://help.qlik.com/en-US/sense-developer/November2018/Subsystems/EngineAPI/Content/Sense_EngineAP...

1 Solution

Accepted Solutions
mayuringale25
Partner - Creator
Partner - Creator

Hi,
*****Use GetBookmarks API from Engine API Explorer

Step 1 :Go to Engine Explorer and connect your app
Step 2: Select GetBookmarks method in DOC and paste this json
{
"handle": 1,
"method": "GetBookmarks",
"params": {
"qOptions": {
"qTypes": [
"bookmark"
],
"qData": {}
}
}
}
Step 3: And Execute
Step 4: You will get List of all Bookmarks from current app

Thanks and Regards
Mayur Ingale
Thanks and Regards
Mayur Ingale

View solution in original post

2 Replies
mayuringale25
Partner - Creator
Partner - Creator

Hi,
*****Use GetBookmarks API from Engine API Explorer

Step 1 :Go to Engine Explorer and connect your app
Step 2: Select GetBookmarks method in DOC and paste this json
{
"handle": 1,
"method": "GetBookmarks",
"params": {
"qOptions": {
"qTypes": [
"bookmark"
],
"qData": {}
}
}
}
Step 3: And Execute
Step 4: You will get List of all Bookmarks from current app

Thanks and Regards
Mayur Ingale
Thanks and Regards
Mayur Ingale
mgranillo
Specialist
Specialist
Author

Thanks for the solution.  I also found a work around making  a widget and calling the <qw-sys-info> tag but it was hard extracting the text.  Your solution is preferred