name: (string) The user's name.phone: (string) The user's phone number.pw: (string) The user's password.emp_no: (string) The user's employee number.success: (boolean) Indicates the success of the operation.user_id: (integer) The ID of the updated user.curl --location --request PUT 'https://mohom.kr/api/v1/user' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "테스트_전환",
"phone": "010-9956-3555",
"pw": "a1234567",
"emp_no": "iFA_test"
}'{
"success": true,
"user_id": 1236185
}