action jira_get_all_field_configurations { label: "Get all field configurations" description: "Deprecated, use [ Field schemes](https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-field-schemes/#api-group-field-schemes) which supports field association schemes.\n\nReturns a [paginated](#pagination) list of field configurations. The list can be for all field configurations or a subset determined by any combination of these criteria:\n\n * a list of field configuration item IDs.\n * whether the field configuration is a default.\n * whether the field configuration name or description contains a query string.\n\nOnly field configurations used in company-managed (classic) projects are returned.\n\n**[Permissions](#permissions) required:** *Administer Jira* [global permission](https://confluence.atlassian.com/x/x4dKLg)." provider: jira method: GET path: "/rest/api/3/fieldconfiguration" encoding: json input: { type: "object" properties: { id: { type: "array" items: { type: "integer" format: "int64" } } isDefault: { type: "boolean" } maxResults: { type: "integer" format: "int32" } query: { type: "string" } startAt: { type: "integer" format: "int64" } } 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 a field configuration." required: ["name"] properties: { description: { type: "string" description: "The description of the field configuration." } name: { type: "string" description: "The name of the field configuration. Must be unique." } } additionalProperties: false } } } additionalProperties: false } }