curl --location --request PATCH '/api/v1/users/password' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"user": {
"current_password": "pa$$word",
"password": "pa$$word",
"password_confirmation": "pa$$word"
}
}'{
"success": true,
"data": {
"message": "Password updated successfully"
}
}