1

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.

James Z
  • 12,209
  • 10
  • 24
  • 44

1 Answers1

1

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

SwethaKandikonda
  • 7,513
  • 2
  • 4
  • 18
  • How about if I want to specify the date instead of startAt=0&maxResults=8000. Also if I want the issue type to be standard not a sub-task. I tried to follow the same url you provide but I feel that there is something wrong. (........&fields=issue,summary,issuetype&created>=-15d&hierarchylevel=0 ) – user20829088 Jan 04 '23 at 07:04