Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1
Skip to end of metadata
Go to start of metadata

This API call returns various account information.

Resource URL

/api/1.0/account/info

Resource Information

 

Response formatsJSON
Response code200
Requires authentication?Yes
HTTP MethodGET

Example Result

{
    "plan": <string>, // account plan
    "user_limit": <int>,
    "user_used": <int>,
    "storage_limit": <int>, // account quota in bytes
    "storage_used": <int>, // usage in bytes
    "max_file_size": <int>, // Max share file size 
    "max_files_count": <int>, // Max files number that can be shared at once
    "retention": <int>, // file retention time
    "language": <string> // account language
}
  • No labels
Write a comment…
Quatrix APIs v1.0 QA1