Home > OS >  Azure Logic App get all Jira ticket instead of one
Azure Logic App get all Jira ticket instead of one

Time:01-03

Is there a way to get group of ticket on Azure Logic App instead of getting only one by Key?

I need to get all ticket created over a month and then use a loop to check which one is contain the needed data to add comment on it.

CodePudding user response:

Thank you @Skin for pointing out in the right direction. Fetching data through REST API worked for me. Below is the flow of my Logic app.

enter image description here

GET

https://<YOUR_DOMAIN>.atlassian.net/rest/api/2/search?jql=project=<PROJECTID>&fields=issue,status,name&startAt=0&maxResults=8000

RESULTS

enter image description here

  • Related