---
title: "How do I utilize the Jira API to generate identifier numbers for Ketryx select option fields?"
description: "The first thing to do is to determine if the field that you are trying to generate identifier numbers for is a Ketryx field. Ketryx fields have a Jira field API id of the following format: com.ketryx.app.atlassian<field."
category: "Frequently Asked Questions"
section: "General"
keywords: ["identifier", "numbers", "generate", "atlassian", "option", "api", "requirement type", "utilize"]
source_url: "https://support.ketryx.com/hc/en-us/articles/37023732119309-How-do-I-utilize-the-Jira-API-to-generate-identifier-numbers-for-Ketryx-select-option-fields"
last_reviewed: 2026-06-11
---

# How do I utilize the Jira API to generate identifier numbers for Ketryx select option fields?

> **In short:** The first thing to do is to determine if the field that you are trying to generate identifier numbers for is a Ketryx field. Ketryx fields have a Jira field API id of the following format: com.ketryx.app.atlassian<field.

The first thing to do is to determine if the field that you are trying to generate identifier numbers for is a Ketryx field. Ketryx fields have a Jira field API id of the following format: _**com.ketryx.app.atlassian__<field>**_. For example the Ketryx field _**Requirement Type**_ has the following Jira field API id: _**com.ketryx.app.atlassian__requirementType**_.

The next thing to do is to access the Jira API for field options to generate the identifier numbers for the Ketryx select options. To do so, you must have ADMIN access to your atlassian environment and search in the following url format in your web browser: _**https://<environment>.atlassian.net/rest/api/3/field/com.ketryx.app.atlassian__<field>/option?maxResults=50000**_. This will return a json blob containing up to 50000 options that are available for that Ketryx select option field under the "values" key. An example of this output can be found below:

```auto
{"self":"https://<environment>.atlassian.net/rest/api/3/field/com.ketryx.app.atlassian__requirementType/option?maxResults=50000&startAt=0","maxResults":50000,"startAt":0,"total":3,"isLast":true,"values":[{"id":1,"value":"User/Marketing","properties":{},"config":{"scope":{"projects":[],"projects2":[],"global":{"attributes":["notSelectable"]}},"attributes":["notSelectable"]}},{"id":2,"value":"Legal","properties":{},"config":{"scope":{"projects":[],"projects2":[],"global":{"attributes":["notSelectable"]}},"attributes":["notSelectable"]}},{"id":3,"value":"Regulatory","properties":{},"config":{"scope":{"projects":[],"projects2":[],"global":{}},"attributes":[]}}]}
```

Under the "values" list you can see the mappings for the requirement type Ketryx select option field, including the mapping from requirement type: "User/Market" to the identifier number "1".

## Related articles

- [How do I import data into my Jira project?](how-do-i-import-data-into-my-jira-project.md)
- [How can I add my own types of requirements in the Ketryx Requirement Type field?](how-can-i-add-my-own-types-of-requirements-in-the-ketryx-requirement-type-field.md)
- [What are the definitions and origins of the change types listed in our Work Instructions (Corrective, Preventive, Adaptive, Perfective), and can these be customized in Ketryx?](what-are-the-definitions-and-origins-of-the-change-types-listed-in-our-work.md)
- [What options are available for documentation publication?](what-options-are-available-for-documentation-publication.md)
- [Is there anything I should know before downloading the Ketryx Connector for Jira app from Atlassian Marketplace?](is-there-anything-i-should-know-before-downloading-the-ketryx-connector-for.md)
