I maintain an internal web app which has a button for generating a form in smartsheet. It does this by building the query string containing required data in the hyperlink on the page. If a user clicks this button, it opens a new tab with the prepopulated smartsheet, user clicks submit. All is well.
But if the user is not logged in, since the query string is cleared after authentication, the form will not have any prepopulated data. Currently the user would close the new tab, and click the button a second time.
Has anyone discovered a workaround for this scenario? Is there an endpoint my web app can hit which simply returns if the user is logged in or not?