Returns a list of all issue priorities
Forge and OAuth2 apps cannot access this REST resource.
This request has no parameters.
List of priorities
1
2
3
4
curl --request GET \
--url 'http://{baseurl}/rest/api/2/priority' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'1
2
3
4
5
6
7
8
{
"description": "This is a description of the priority",
"iconUrl": "http://www.example.com/jira/images/icons/priorities/major.png",
"id": "1",
"name": "Major",
"self": "http://www.example.com/jira/rest/api/2/priority/1",
"statusColor": "red"
}Returns a page with list of issue priorities whose names (or their translations) match query
Forge and OAuth2 apps cannot access this REST resource.
integer
string
array<integer>
integer
List of priorities
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'1
2
3
4
5
6
7
8
{
"description": "This is a description of the priority",
"iconUrl": "http://www.example.com/jira/images/icons/priorities/major.png",
"id": "1",
"name": "Major",
"self": "http://www.example.com/jira/rest/api/2/priority/1",
"statusColor": "red"
}Returns an issue priority
Forge and OAuth2 apps cannot access this REST resource.
string
RequiredReturned if the issue priority exists and is visible by the calling user. Contains a full representation of the issue priority in JSON
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'1
2
3
4
5
6
7
8
{
"description": "This is a description of the priority",
"iconUrl": "http://www.example.com/jira/images/icons/priorities/major.png",
"id": "1",
"name": "Major",
"self": "http://www.example.com/jira/rest/api/2/priority/1",
"statusColor": "red"
}Rate this page: