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

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

Parameters 

 

Name TypeDescription

cb

optional

function

callback function


 

Example

 

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

 

Example Result

 

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

 

 

  • No labels
Write a comment…
Quatrix JavaSctipt APIs QJA