Server
Jira Data Center / Reference / REST API
GET

Get all issue priorities

Returns a list of all issue priorities

Request

This request has no parameters.

Responses

List of priorities

application/json

PriorityJsonBean
GET/api/2/priority
1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/api/2/priority' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
GET

Get paginated issue priorities

Returns a page with list of issue priorities whose names (or their translations) match query

Request

Query parameters

maxResults

integer

query

string

projectIds

array<integer>

startAt

integer

Responses

List of priorities

application/json

PriorityJsonBean
GET/api/2/priority/page
1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/api/2/priority/page' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'
GET

Get an issue priority by ID

Returns an issue priority

Request

Path parameters

id

string

Required

Responses

Returned if the issue priority exists and is visible by the calling user. Contains a full representation of the issue priority in JSON

application/json

PriorityJsonBean
GET/api/2/priority/{id}
1 2 3 4 curl --request GET \ --url 'http://{baseurl}/rest/api/2/priority/{id}' \ --user 'email@example.com:<api_token>' \ --header 'Accept: application/json'

Rate this page: