Get all issue field options
GET
/rest/api/3/field/{fieldKey}/option
Issue custom field options (apps)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/field//option'
Response Response Example
200 - Success
{
"self": "https://your-domain.atlassian.net/rest/api/3/field/fieldKey/option?startAt=0&maxResults=1",
"nextPage": "https://your-domain.atlassian.net/rest/api/3/field/fieldKey/option?startAt=1&maxResults=1",
"maxResults": 1,
"startAt": 0,
"total": 10,
"isLast": false,
"values": [
{
"id": 1,
"value": "Team 1",
"properties": {
"leader": {
"name": "Leader Name",
"email": "lname@example.com"
},
"members": 42,
"description": "The team's description",
"founded": "2016-06-06"
},
"config": {
"scope": {
"projects": [],
"projects2": [
{
"id": 1002,
"attributes": [
"notSelectable"
]
},
{
"id": 1001,
"attributes": [
"notSelectable"
]
}
],
"global": {}
},
"attributes": []
}
}
]
}
Request
Path Params
fieldKey
stringÂ
required
fieldKey
value, do one of the following:jiraIssueFields
module. app-key can also be found in the app listing in the Atlassian Universal Plugin Manager.key
. For example, "key": "teams-add-on__team-issue-field"
Query Params
startAt
integerÂ
optional
maxResults
integerÂ
optional
Responses
Modified at 2023-07-13 03:27:27