简体   繁体   中英

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.

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.

在此处输入图像描述

GET

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

RESULTS

在此处输入图像描述

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM