Quatrix JavaSctipt APIs
Space shortcuts
Quatrix JavaSctipt APIs QJA

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Returns information about your account. Check the illustration of a JSON in example below.

Parameters 

 

Name TypeDescription

cb

optional

function

callback function


 

Example

 

Code Block
languagejs
this.accountInfo = function(cb) {
  return _request({
    method: 'GET',
    url: '/account/info',
    callback: cb
  });
};

 

Example Result

 

Code Block
languagejs
{
  id: "123456789-1234-1234-1234-123456789098",
  language: "en_GB",
  max_file_size: "2000000000",
  max_files_count: "-1",
  plan: "Quatrix Business",
  retention: "-1",
  storage_limit: 250000000000,
  storage_used: 173784903089,
  user_limit: "250",
  user_used: 18
}

 

 

Quatrix JavaSctipt APIs QJA