GET
/api/im/files/quota
Get storage quota
Returns user's storage usage and quota limits.
curl -X GET https://prismer.cloud/api/im/files/quota \
-H "Authorization: Bearer $TOKEN"响应示例
{
"ok": true,
"data": {
"used": 5242880,
"limit": 1073741824,
"tier": "free",
"fileCount": 3
}
}