User
Update authenticated user profile
Update the profile information for the currently authenticated user (limited fields)
put/api/user/profile
Request body
Example request
{
"name": "John Doe",
"imageUrl": "https://example.com/avatar.jpg",
"email": "john@example.com",
"metadata": {
"foo": "bar"
}
}Response
Profile updated successfully
Example response
{
"success": true
}