All URIs are relative to https://api.kinow.com/api
Method | HTTP request | Description |
---|---|---|
getConfiguration | GET /configuration | |
getConfigurationByName | GET /configuration/{configuration_name} |
ConfigurationList getConfiguration(opts)
Get configuration by name. Available : - LANG_DEFAULT - CURRENCY_DEFAULT - COUNTRY_DEFAULT - TIMEZONE - FORCE_TAX_ID
var KinowJavascriptSdk = require('kinow-javascript-sdk');
var apiInstance = new KinowJavascriptSdk.ConfigurationApi();
var opts = {
'page': 789, // Integer |
'perPage': 789 // Integer |
};
apiInstance.getConfiguration(opts).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
page | Integer | [optional] | |
perPage | Integer | [optional] |
No authorization required
- Content-Type: Not defined
- Accept: Not defined
Configuration getConfigurationByName(configurationName)
Get configuration by name. Available : - LANG_DEFAULT - CURRENCY_DEFAULT - COUNTRY_DEFAULT - TIMEZONE
var KinowJavascriptSdk = require('kinow-javascript-sdk');
var apiInstance = new KinowJavascriptSdk.ConfigurationApi();
var configurationName = "configurationName_example"; // String |
apiInstance.getConfigurationByName(configurationName).then(function(data) {
console.log('API called successfully. Returned data: ' + data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
configurationName | String |
No authorization required
- Content-Type: Not defined
- Accept: Not defined