issues

List issue field values for an issue

Lists all issue field values for an issue.

get/repos/{owner}/{repo}/issues/{issue_number}/issue-field-values

Path parameters

ownerstring required

The account owner of the repository. The name is not case sensitive.

repostring required

The name of the repository without the .git extension. The name is not case sensitive.

issue_numberinteger required

The number that identifies the issue.

Query parameters

per_pageinteger

The number of results per page (max 100). For more information, see "Using pagination in the REST API."

pageinteger

The page number of the results to fetch. For more information, see "Using pagination in the REST API."

Response

Response

issue_field_idinteger required

Unique identifier for the issue field.

issue_field_namestring

The human-readable name of the issue field.

node_idstring required
data_type'text' | 'single_select' | 'multi_select' | 'number' | 'date' required

The data type of the issue field

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

  • 2022-11-28fd784b1d2c891See the full diff
    • added the optional property items/issue_field_name to the response with the 200 status

      response-optional-property-added

  • 2022-11-28cb5598bcb83211See the full diff
    • added the new multi_select enum value to the items/data_type response property for the response status 200

      response-property-enum-value-added

    • added the optional property items/multi_select_options to the response with the 200 status

      response-optional-property-added

  • 2022-11-28434db317b4c11See the full diff
    • endpoint added

      endpoint-added

Of the 62 revisions, 1 has no diff computed.