Skip to main content Skip to complementary content

getExtensionList method

Information noteSTABLE.

This API is reliable and breaking changes are unlikely.
Warning noteDEPRECATED.

This API is deprecated and may be removed in a future version.

qlik.getExtensionList(callback)

Gets a list of extensions installed for Qlik Sense. The reply contains all visualization extensions and mashups.

Version history

Version history
Version state Details
Introduced 1.1
Deprecated

June 2019

Use instead: Extension: Get Schemas

Parameters

callback

Type: Function

Optional.

Callback method.

Returns

A promise of a Qlik associative engine reply.

Tip noteFor more information regarding a promise, see The Promise API.

Example

qlik.getExtensionList(function(list){
	var str = "";
	list.forEach(function(value) {
		str +=  value.id + '(' + value.data.type + ') ';
	});
	alert(str);
});

Did this page help you?

If you find any issues with this page or its content – a typo, a missing step, or a technical error – let us know how we can improve!