Returns default language for your account.
Parameters
| Name | Type | Description |
cb optional | function | callback function |
Example
this.defaultAccountLang = function(cb) {
return _request({
method : 'GET',
url : '/languages/default',
callback : cb,
public: true
});
};
Example Result
{
localization: "en_GB"
}
0 Comments