I am new to Angular and .NET Core. I have successfully created a web api using .NET Core, which is called from an Angular 4 application. Currently, everything is working smoothly. However, after submitting a form that inserts records into the database, I would like to be redirected to a different page. When redirecting, I need to pass some data to trigger another service, which will call a different API Controller in .NET Core.
For example, let's say I create a user and then want to be directed to a new page where I can see the user's First Name, Last Name, and City. On this new page, I would also like to display all ZIP codes for the city. This requires calling a different api to retrieve all zip codes for the specific city selected by the user. While typically this functionality would exist on one page with a select list, this example helps illustrate my goal.