Update Current User Profile
Update current user's own profile.
Quick Navigation
Endpoint
PUT /api/v1/users/me
Headers
| Header | Required | Description |
|---|---|---|
Authorization | Yes | Bearer <access_token> |
Content-Type | Yes | application/json |
Request Body
{
"display_name": "John Smith",
"profile": {
"bio": "Software developer"
}
}
Response
Success (200)
{
"success": true,
"data": {
"user": {
"id": 123,
"display_name": "John Smith",
"updated_at": "2024-01-01T16:00:00Z"
},
"message": "Profile updated successfully"
},
"message": "Profile updated successfully"
}
Features
- Self-service profile updates
- Validation
- Audit logging
Status
[WARNING] TODO: Not Implemented
This endpoint is defined in the router but the implementation logic is not yet complete.