简体   繁体   中英

Jira Rest Api for getting newest ticket

how can i get json of newest ticket in jira Queue page for below link

projects/assitance1/queues/custom/5

I don't think there is a specific REST Endpoint available for that. But I believe you can query it via the JQL. If that's suits, you can use rest/api/2/search?jql=

通过REST API搜索端点的查询将向您提供按创建日期排序的票证列表,最新的票证排在第一位:

https://your.jira.host/rest/api/2/search?jql=+order+by+created+desc

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