I'm quite new in Angular at all. What I'm doing is next, .net core is used for creating web api, and those api's are called from Angular4. Everything what I had did is working smoothly. Now I want on current page after submit form which is inserting records in database, need to redirect me to different page, but when I'm redirecting I should pass some data which will run another service which will call different API Controller from .net core with this passed data.
One stupid example: After I create user want to get new page where I can see user's First Name, Last Name, City want to get new page where I will see all ZIP codes for current City, because I have had call different api which is giving me all zip code for city which is passed to different component. Usually this is is going on one page with select list, but this is just example to understand what I'm trying to achieve.