This resource represents issue navigator settings. Use it to get and set issue navigator default columns.
Returns the default issue navigator columns.
Permissions required: Administer Jira global permission.
Forge and OAuth2 apps cannot access this REST resource.
Connect apps cannot access this REST resource.
This request has no parameters.
Returned if the request is successful.
array<ColumnItem>
1
2
3
4
curl --request GET \
--url 'https://your-domain.atlassian.net/rest/api/2/settings/columns' \
--user 'email@example.com:<api_token>' \
--header 'Accept: application/json'
1
2
3
4
5
6
7
8
9
10
[
{
"label": "Key",
"value": "issuekey"
},
{
"label": "Summary",
"value": "summary"
}
]
Sets the default issue navigator columns.
The columns
parameter accepts a navigable field value and is expressed as HTML form data. To specify multiple columns, pass multiple columns
parameters. For example, in curl:
curl -X PUT -d columns=summary -d columns=description https://your-domain.atlassian.net/rest/api/2/settings/columns
If no column details are sent, then all default columns are removed.
A navigable field is one that can be used as a column on the issue navigator. Find details of navigable issue columns using Get fields.
Permissions required: Administer Jira global permission.
Forge and OAuth2 apps cannot access this REST resource.
Connect apps cannot access this REST resource.
A navigable field value.
array<string>
Returned if the request is successful.
1
2
3
curl --request PUT \
--url 'https://your-domain.atlassian.net/rest/api/2/settings/columns' \
--user 'email@example.com:<api_token>'
Rate this page: