Authorization: Bearer ********************{
"oldPassword": "123456",
"newPassword": "newPassword123"
}curl --location --request PATCH '/user/password' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"oldPassword": "123456",
"newPassword": "newPassword123"
}'