Изнутри DashboardComponent:
this.router.navigate(['/', { id: newId }]);
или
this.router.navigateByUrl(`/${newId}`);
PS: предлагаю вам изменить свои маршруты, например
const routes: Routes = [
{
path: ":id",
component: DashboardComponent,
canActivate: [AuthGuardService],
data: { title: "Dashboard" }
},
{
path: '',
redirectTo: '/', // redirect to `main page`
pathMatch: 'full'
},
{
path: '**', // Wildcard route for a 404 page
component: PageNotFoundComponent
},
];