action confluence_get_all_issue_field_options { label: "Get all issue field options" description: "Returns a [paginated](#pagination) list of all the options of a select list issue field. A select list issue field is a type of [issue field](https://developer.atlassian.com/cloud/jira/platform/modules/issue-field/) that enables a user to select a value from a list of options.\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: confluence method: GET path: "/rest/api/3/field/{fieldKey}/option" encoding: json input: { type: "object" properties: { fieldKey: { type: "string" } maxResults: { type: "integer" format: "int32" } startAt: { type: "integer" format: "int64" } } required: ["fieldKey"] additionalProperties: false } output: { type: "object" description: "A page of items." properties: { isLast: { type: "boolean" description: "Whether this is the last page." } maxResults: { type: "integer" format: "int32" description: "The maximum number of items that could be returned." } nextPage: { type: "string" format: "uri" description: "If there is another page of results, the URL of the next page." } self: { type: "string" format: "uri" description: "The URL of the page." } startAt: { type: "integer" format: "int64" description: "The index of the first item returned." } total: { type: "integer" format: "int64" description: "The number of items returned." } values: { type: "array" description: "The list of items." items: { 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 } } } additionalProperties: false } }