Search code examples
azuregetkeyjiraazure-logic-apps

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.


Solution

  • 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