action atlassian_get_issue_field_option { label: "Get issue field option" description: "Returns an option from a select list issue field.\n\nNote that this operation **only works for issue field select list options added by Connect apps**, it cannot be used with issue field select list options created in Jira or using operations from the [Issue custom field options](#api-group-Issue-custom-field-options) resource.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg). Jira permissions are not required for the app providing the field." provider: atlassian method: GET path: "/rest/api/3/field/{fieldKey}/option/{optionId}" encoding: json input: { type: "object" properties: { fieldKey: { type: "string" } optionId: { type: "integer" format: "int64" } } required: ["fieldKey", "optionId"] additionalProperties: false } output: { type: "object" description: "Details of the options for a select list issue field." required: ["id", "value"] properties: { config: { type: "object" description: "Details of the projects the option is available in." properties: { attributes: { type: "array" description: "DEPRECATED" items: { type: "string" enum: ["notSelectable", "defaultValue"] } } scope: { description: "Defines the projects that the option is available in. If the scope is not defined, then the option is available in all projects." type: "object" } } additionalProperties: false } id: { type: "integer" format: "int64" description: "The unique identifier for the option. This is only unique within the select field's set of options." } properties: { type: "object" description: "The properties of the object, as arbitrary key-value pairs. These properties can be searched using JQL, if the extractions (see [Issue Field Option Property Index](https://developer.atlassian.com/cloud/jira/platform/modules/issue-field-option-property-index/)) are defined in the descriptor for the issue field module." } value: { type: "string" description: "The option's name, which is displayed in Jira." } } additionalProperties: false } }