We have ASP.NET MVC applications. We have our own `IdP` for SSO, The `IdP` issues authentication ticket using OpenID Connect Protocol. Users can access all our applications by singing once.
We want to use JIRA ticketing system for users to create ticket. Requirements are
1> Do not create new JIRA or Atlassian account for every user.
2> We do not want to create `Form` in our applications, and submit that information JIRA using API to create ticket.
Instead, when user clicks on the create ticket link, it should get redirected to JIRA ticketing system, MUST get authenticated implicitly, and be able to create ticket using JIRA's ticketing system.
Is this possible? Can someone please provide guidelines