All URIs are relative to https://madisonreed.looker.com:19999/api/3.0
Method | HTTP request | Description |
---|---|---|
allLegacyFeatures | GET /legacy_features | Get All Legacy Features |
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 LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.allLegacyFeatures(callback);
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/json
[Timezone] allTimezones
Get All Timezones
var LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.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 LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.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 LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var legacyFeatureId = 789; // {Integer} id of legacy feature
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.legacyFeature(legacyFeatureId, callback);
Name | Type | Description | Notes |
---|---|---|---|
legacyFeatureId | Integer | id of legacy feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
BackupConfiguration updateBackupConfiguration(body)
Update Backup Configuration
var LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var body = new LookerApi30Reference.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);
}
};
api.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 LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var legacyFeatureId = 789; // {Integer} id of legacy feature
var body = new LookerApi30Reference.LegacyFeature(); // {LegacyFeature} Legacy Feature
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.updateLegacyFeature(legacyFeatureId, body, callback);
Name | Type | Description | Notes |
---|---|---|---|
legacyFeatureId | Integer | id of legacy feature | |
body | LegacyFeature | Legacy Feature |
No authorization required
- Content-Type: application/json
- Accept: application/json
Whitelabel updateWhitelabelConfiguration(body)
Update Whitelabel configuration
var LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.ConfigApi()
var body = new LookerApi30Reference.Whitelabel(); // {Whitelabel} Whitelabel configuration
var callback = function(error, data, response) {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
};
api.updateWhitelabelConfiguration(body, callback);
Name | Type | Description | Notes |
---|---|---|---|
body | Whitelabel | Whitelabel configuration |
No authorization required
- Content-Type: application/json
- Accept: application/json
ApiVersion versions(opts)
Get ApiVersion
var LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.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);
}
};
api.versions(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
fields | String | Requested fields. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json
Whitelabel whitelabelConfiguration(opts)
Get Whitelabel configuration
Gets the whitelabel configuration, which includes hiding documentation links, custom favicon uploading, etc.
var LookerApi30Reference = require('looker-api-3');
var apiInstance = new LookerApi30Reference.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);
}
};
api.whitelabelConfiguration(opts, callback);
Name | Type | Description | Notes |
---|---|---|---|
fields | String | Requested fields. | [optional] |
No authorization required
- Content-Type: application/json
- Accept: application/json