Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA
Skip to end of metadata
Go to start of metadata

Returns default language for your account.

Parameters 

 

Name TypeDescription

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"
}

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA