- Site
- Session
- User
- Callback
- Workflow
- File
- Share
- VAS
- Group
- WebDAV
Get storage capacity
GET
/user/capacity
Auth: JWT Required
Request
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/user/capacity'
Responses
🟢200Success
application/json
Body
data
object  | nullÂ
optional
total
integerÂ
required
used
integerÂ
required
storage_pack_total
integerÂ
required
code
integerÂ
required
0
- Success.Default:
0
Example:
0
msg
stringÂ
optional
error
string  | nullÂ
optional
correlation_id
string <uuid> | nullÂ
optional
Example:
b4351ecc-ee1a-4455-bc94-2c3dbcc58538
Example
{
"code": 0,
"data": {
"total": 3702272294912,
"used": 7946323095,
"storage_pack_total": 1503249039360
},
"msg": ""
}
Modified at 2025-06-12 06:31:16