Root is not required, but ADB / Android Debug Bridge (on your PC), is.
bash
adb devices
>List of devices attached
>
> * daemon not running; starting now at tcp:5037
>
> * daemon started successfully
>
> PQ5631DSMA unauthorizedIf it says "unauthorized" - be sure to have developer settings turned on (tap the build info under settings 3x) and toggle ADB over USB
bash
adb devices
If you see device, you are good to go.
Launch a shell inside the device
adb shell
Obtain the package name you want to remove from Settings > Apps & Notifications > See all xx apps > Hit the 3 dots in the upper-right corner > Show system > click the app you want to remove > scroll to the very bottom and look for something like com.providername.appname
Confirm the package
pm list packages | com.providername.appname
Remove it
pm uninstall -k --user 0 com.providername.appname
Success