Get user profile
GET
/user
Get current user profile, tenant, and quota info
Authorizations
Responses
User profile
application/json
JSON
{
"success": true,
"data": {
"user": {
"id": "string",
"email": "string",
"display_name": "string",
"avatar_url": "string",
"is_anonymous": true
},
"tenant": {
"id": "string",
"name": "string",
"short_name": "string",
"is_default": true,
"color": "string"
},
"quota": {
"max_source_size_mb": 0,
"max_daily_upload_size_mb": 0,
"remaining_daily_upload_size_mb": 0,
"max_sources_per_group": 0,
"max_expiration_days": 0
}
}
}