Returns information about your account. Check the illustration of a JSON in example below.
Parameters
| Name | Type | Description |
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
}
Add Comment