Web App integration - Create Epic from anthor web Application

Hi All,

I am looking help on integrating jira and Jira Align platforms to one our web based platform. To create Epics.
Is that possible? I think it is possible.
Please suggest me the resource what you have to start integrate with platforms.
On click of button in web platform. It should capture the details and create a Epic in jira and Jira Align.

Please help me.

Hi @PavanKumarChalla ,

You can use the REST API api/2/issue-createIssue.
Epic is basically a type of issue in Jira. Notice that the example request payload includes:

"issuetype": {
   "id": "10000"
 },

Replace it with the epic issue type id of your instance.

Regards,
TJ