On Submit of form, take user to new app for that specific data on form

I need the user to be taken to a new app once they hit the submit button; however, I need the new app to only show data from that newly created data.
For example, user creates an "invoice" and hits submit after filling in data. The user is then taken to a new app where they can enter "line items" for that specific invoice they just created.
I've used query params for when the user selects a certain row on a table like this {{ currentRow.invoice_id }}, but now I need it to be for the newly created data on the form.
Thanks!

Try using an event handler to go to another app along with urlparams

Perfect, thank you!