Update Own Profile
POST
/web/v1/users/self/updateJWTUpdates the authenticated user's own profile information such as display name and preferences.
Authentication
Auth Chain: WEB Chain — requires
Authorization: Bearer <jwt>These headers are injected by the system (frontend does nothing):X-PORTAL-ACCESS-CODE(Nginx),X-Request-Id(Gateway)
Request Parameters
| Name | Type | Required | In | Description |
|---|---|---|---|---|
request | Object | Yes | body | ProfileUpdateRequest object (see request body schema) |
Success Response
Success200
{
"version": "1.3.0",
"timestamp": 1709337600000,
"success": true,
"code": "2000",
"message": "SUCCESS",
"data": {
"userBizId": "usr_abc123",
"email": "user@example.com",
"displayName": "John Doe",
"status": "ACTIVE"
}
}Error Responses
Unauthorized401
{
"success": false,
"code": "4010",
"message": "Invalid or expired token"
}Notes
- Only the authenticated user can update their own profile.
- Changes are reflected immediately.