Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Info

Custom field ID (e.g customfield_13244) is a unique identifier of a field that can be used to update field value via Jira REST API or other way.

There are a few ways to find the custom field ID:

Table of Contents

Old Issue View

customfield_10159 (or just the number 10159) visible on the screenshot below is the ID you are looking for:

Image Added

Jira administration

The simplest way to get Jira custom field ID is to:

  • Navigate to Administration >> Issues >> Custom Fields.
  • Click the cog and hover over Configure or Screens option.
  • Observe the URL at the bottom left of the browser window. Example:

    (info) The id for this custom field is customfield_10006.

...

REST API

The API endpoint that allows getting the list of the custom fields along with their IDs: 

Code Block
curl https://Your-Jira-URL/rest/api/2/field

...