Skip to main content

Get Current User Profile

Get current user's own profile.

Quick Navigation
Outline

Endpoint

GET /api/v1/users/me

Headers

HeaderRequiredDescription
AuthorizationYesBearer <access_token>

Response

Success (200)

{
"success": true,
"data": {
"user": {
"id": 123,
"email": "user@example.com",
"display_name": "John Doe",
"profile": {},
"settings": {}
},
"message": "Current user details retrieved successfully"
},
"message": "Current user details retrieved successfully"
}

Features

  • Self-service profile access
  • Personal information
  • Settings summary

Status

[WARNING] TODO: Not Implemented

This endpoint is defined in the router but the implementation logic is not yet complete.