There was an error while loading. Please reload this page.
Load endpoint from DataAPI dynamically. This method is executed executed synchronously.
Load endpoints only from specified module.
api.loadEndpoints({ includeComponents: 'your-extension-module' }); api.getDataViaYourExtensionModule(function(response) { // Do stuff });
Load all endpoints except for core. Since all the endpoints of core is already loaded.
api.loadEndpoints({ excludeComponents: 'core' }); api.getDataViaYourExtensionModule(function(response) { // Do stuff });