List issue field values for an issue
Lists all issue field values for an issue.
Path parameters
The account owner of the repository. The name is not case sensitive.
The name of the repository without the .git extension. The name is not case sensitive.
The number that identifies the issue.
Query parameters
The number of results per page (max 100). For more information, see "Using pagination in the REST API."
The page number of the results to fetch. For more information, see "Using pagination in the REST API."
Response
Response
Example response
[
{
"issue_field_id": 1,
"issue_field_name": "Priority",
"node_id": "IFT_GDKND",
"data_type": "text",
"value": "Sample text",
"single_select_option": {
"id": 1,
"name": "High",
"color": "red"
},
"multi_select_options": [
{
"id": 1,
"name": "High",
"color": "red"
}
]
}
]Changes
Changed in 3 of the 62 revisions of this API.13
- ○
added the optional property
items/issue_field_nameto the response with the200statusresponse-optional-property-added
- ○
- ●
added the new
multi_selectenum value to theitems/data_typeresponse property for the response status200response-property-enum-value-added
- ○
added the optional property
items/multi_select_optionsto the response with the200statusresponse-optional-property-added
- ●
- ○
endpoint added
endpoint-added
- ○
Of the 62 revisions, 1 has no diff computed.