All URIs are relative to /api/3.1
Method | HTTP request | Description |
---|---|---|
allLegacyFeatures | GET /legacy_features | Get All Legacy Features |
allLocales | GET /locales | Get All Locales |
allTimezones | GET /timezones | Get All Timezones |
backupConfiguration | GET /backup_configuration | Get Backup Configuration |
legacyFeature | GET /legacy_features/{legacy_feature_id} | Get Legacy Feature |
updateBackupConfiguration | PATCH /backup_configuration | Update Backup Configuration |
updateLegacyFeature | PATCH /legacy_features/{legacy_feature_id} | Update Legacy Feature |
updateWhitelabelConfiguration | PUT /whitelabel_configuration | Update Whitelabel configuration |
versions | GET /versions | Get ApiVersion |
whitelabelConfiguration | GET /whitelabel_configuration | Get Whitelabel configuration |
[LegacyFeature] allLegacyFeatures()
Get All Legacy Features
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.allLegacyFeatures(callback);
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Locale] allLocales()
Get All Locales
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.allLocales(callback);
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Timezone] allTimezones()
Get All Timezones
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.allTimezones(callback);
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
BackupConfiguration backupConfiguration()
Get Backup Configuration
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.backupConfiguration(callback);
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
LegacyFeature legacyFeature(legacyFeatureId)
Get Legacy Feature
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var legacyFeatureId = 789; // Number | id of legacy feature
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.legacyFeature(legacyFeatureId, callback);
Name | Type | Description | Notes |
---|---|---|---|
legacyFeatureId | Number | id of legacy feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
BackupConfiguration updateBackupConfiguration(body)
Update Backup Configuration
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var body = new LookerApi31Reference.BackupConfiguration(); // BackupConfiguration | Options for Backup Configuration
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.updateBackupConfiguration(body, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | BackupConfiguration | Options for Backup Configuration |
No authorization required
- Content-Type: application/json
- Accept: application/json
LegacyFeature updateLegacyFeature(legacyFeatureId, body)
Update Legacy Feature
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var legacyFeatureId = 789; // Number | id of legacy feature
var body = new LookerApi31Reference.LegacyFeature(); // LegacyFeature | Legacy Feature
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.updateLegacyFeature(legacyFeatureId, body, callback);
Name | Type | Description | Notes |
---|---|---|---|
legacyFeatureId | Number | id of legacy feature | |
body | LegacyFeature | Legacy Feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
WhitelabelConfiguration updateWhitelabelConfiguration(body)
Update Whitelabel configuration
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var body = new LookerApi31Reference.WhitelabelConfiguration(); // WhitelabelConfiguration | Whitelabel configuration
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.updateWhitelabelConfiguration(body, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | WhitelabelConfiguration | Whitelabel configuration |
No authorization required
- Content-Type: application/json
- Accept: application/json
ApiVersion versions(opts)
Get ApiVersion
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var opts = {
'fields': "fields_example" // String | Requested fields.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.versions(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
fields | String | Requested fields. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
WhitelabelConfiguration whitelabelConfiguration(opts)
Get Whitelabel configuration
This feature is enabled only by special license. ### Gets the whitelabel configuration, which includes hiding documentation links, custom favicon uploading, etc.
var LookerApi31Reference = require('looker-node-api');
var apiInstance = new LookerApi31Reference.ConfigApi();
var opts = {
'fields': "fields_example" // String | Requested fields.
};
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
apiInstance.whitelabelConfiguration(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
fields | String | Requested fields. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json