user20829088
user20829088

Reputation: 29

Azure Logic App get all Jira ticket instead of one

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.

Upvotes: 1

Views: 448

Answers (1)

SwethaKandikonda
SwethaKandikonda

Reputation: 8254

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

Upvotes: 1

Related Questions