Returns the default issue table columns for the user. If accountId is not passed in the request, the calling user's details are returned.Permissions required:
Administer Jiraglobal permission, to get the column details for any user.
Permission to access Jira, to get the calling user's column details.
Request Request Example
Shell
JavaScript
Java
Swift
curl--location--request GET 'http://jira.local:8080/jira/rest//rest/api/3/user/columns'
Response Response Example
200 - Example 1
[{"label":"string","value":"string"}]
Request
Query Params
accountId
stringÂ
optional
The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.
username
stringÂ
optional
This parameter is no longer available See the deprecation notice for details.
Responses
🟢200Returned if the request is successful.
application/json
Body
array of:
label
stringÂ
optional
The issue navigator column label.
value
stringÂ
optional
The issue navigator column value.
🟠401Returned if the authentication credentials are incorrect or missing.
🟠403Returned if the user does not have the necessary permission or is not accessing their user record.
🟠404Returned if the requested user is not found.