Get full status from JIRA web service

Is there a way to get all state types from a JIRA web service, either through api or through a JQL query? (The problem status is a field that is displayed by floating boards when setting up the board)

+4
source share
2 answers

With the JIRA REST API you can:
Rest / api / 2 /
status or for each project:
Rest / API / 2 / project / {projectIdOrKey} / statuses

see the rest api online browser: it's a great tool:
https://jira.atlassian.com/plugins/servlet/restbrowser#/resource/api-2-status

+3
source

Source: https://habr.com/ru/post/1523994/


All Articles