curl --location --request PUT 'http://localhost:3000/user/profile' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Kuroneko",
"email": "kuroneko@gmail.com"
}'
{
"success": true,
"message": "User updated successfully",
"data": {
"id": "1a951327-7814-402e-a1f6-0cf1faefa68b",
"name": "Kuroneko",
"email": "kuroneko@gmail.com",
"createdAt": "2025-07-24T06:04:43.670Z",
"modifiedAt": "2025-07-24T06:07:12.042Z"
}
}