Internal
Create a new instance of the service.
Assigns a field configuration scheme to a project. If the field configuration
scheme ID is null
, the operation assigns the default field configuration
scheme.
Field configuration schemes can only be assigned to classic projects.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
Creates a field configuration. The field configuration is created with the same field properties as the default configuration, with all the fields being optional.
This operation can only create configurations for use in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
Returned if the request is successful.
example:
{
"description": "My field configuration description",
"id": 10001,
"name": "My Field Configuration"
}
Creates a field configuration scheme.
This operation can only create field configuration schemes used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The details of the field configuration scheme.
Returned if the request is successful.
example:
{
"description": "We can use this one for software projects.",
"id": "10002",
"name": "Field Configuration Scheme for software related projects"
}
Deletes a field configuration.
This operation can only delete configurations used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration.
Returned if the request is successful.
Deletes a field configuration scheme.
This operation can only delete field configuration schemes used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration scheme.
Returned if the request is successful.
Returns a paginated list of field configurations. The list can be for all field configurations or a subset determined by any combination of these criteria:
Only field configurations used in company-managed (classic) projects are returned.
Permissions required: Administer Jira global permission.
Optional
id?: number[]The list of field configuration IDs. To include multiple IDs, provide an
ampersand-separated list. For example, id=10000&id=10001
.
Optional
isIf true returns default field configurations only.
Optional
maxThe maximum number of items to return per page.
Optional
query?: stringThe query string used to match against field configuration names and descriptions.
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 50,
"startAt": 0,
"total": 2,
"values": [
{
"id": 10000,
"name": "Default Field Configuration",
"description": "The default field configuration description",
"isDefault": true
},
{
"id": 10001,
"name": "My Field Configuration",
"description": "My field configuration description"
}
]
}
Returns a paginated list of field configuration schemes.
Only field configuration schemes used in classic projects are returned.
Permissions required: Administer Jira global permission.
Optional
id?: number[]The list of field configuration scheme IDs. To include multiple IDs, provide an
ampersand-separated list. For example, id=10000&id=10001
.
Optional
maxThe maximum number of items to return per page.
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 10,
"startAt": 0,
"total": 3,
"values": [
{
"id": "10000",
"name": "Field Configuration Scheme for Bugs",
"description": "This field configuration scheme is for bugs only."
},
{
"id": "10001",
"name": "Field Configuration Scheme for software related projects",
"description": "We can use this one for software projects."
},
{
"id": "10002",
"name": "Field Configuration Scheme for Epics",
"description": "Use this one for Epic issue type."
}
]
}
Returns a paginated list of all fields for a configuration.
Only the fields from configurations used in company-managed (classic) projects are returned.
Permissions required: Administer Jira global permission.
The ID of the field configuration.
Optional
maxThe maximum number of items to return per page.
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 50,
"startAt": 0,
"total": 2,
"values": [
{
"description": "For example operating system, software platform and/or hardware specifications (include as appropriate for the issue).",
"id": "environment",
"isHidden": false,
"isRequired": false
},
{
"id": "description",
"isHidden": false,
"isRequired": false
}
]
}
Returns a paginated list of field configuration issue type items.
Only items used in classic projects are returned.
Permissions required: Administer Jira global permission.
Optional
fieldThe list of field configuration scheme IDs. To include multiple field
configuration schemes separate IDs with ampersand:
fieldConfigurationSchemeId=10000&fieldConfigurationSchemeId=10001
.
Optional
maxThe maximum number of items to return per page.
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 100,
"startAt": 0,
"total": 5,
"values": [
{
"fieldConfigurationSchemeId": "10020",
"issueTypeId": "10000",
"fieldConfigurationId": "10010"
},
{
"fieldConfigurationSchemeId": "10020",
"issueTypeId": "10001",
"fieldConfigurationId": "10010"
},
{
"fieldConfigurationSchemeId": "10021",
"issueTypeId": "10002",
"fieldConfigurationId": "10000"
},
{
"fieldConfigurationSchemeId": "10022",
"issueTypeId": "default",
"fieldConfigurationId": "10011"
},
{
"fieldConfigurationSchemeId": "10023",
"issueTypeId": "default",
"fieldConfigurationId": "10000"
}
]
}
Returns a paginated list of field configuration schemes and, for each scheme, a list of the projects that use it.
The list is sorted by field configuration scheme ID. The first item contains the list of project IDs assigned to the default field configuration scheme.
Only field configuration schemes used in classic projects are returned.
Permissions required: Administer Jira global permission.
Optional
maxThe maximum number of items to return per page.
The list of project IDs. To include multiple projects, separate IDs with
ampersand: projectId=10000&projectId=10001
.
Optional
startThe index of the first item to return in a page of results (page offset).
Returned if the request is successful.
example:
{
"isLast": true,
"maxResults": 50,
"startAt": 0,
"total": 5,
"values": [
{
"projectIds": [
"10",
"11"
]
},
{
"fieldConfigurationScheme": {
"id": "10002",
"name": "Field Configuration Scheme for software related projects",
"description": "We can use this one for software projects."
},
"projectIds": [
"12",
"13",
"14"
]
}
]
}
Removes issue types from the field configuration scheme.
This operation can only modify field configuration schemes used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration scheme.
The issue type IDs to remove.
Returned if the request is successful.
Assigns issue types to field configurations on field configuration scheme.
This operation can only modify field configuration schemes used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration scheme.
Returned if the request is successful.
Updates a field configuration. The name and the description provided in the request override the existing values.
This operation can only update configurations used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration.
Returned if the request is successful.
Updates fields in a field configuration. The properties of the field configuration fields provided override the existing values.
This operation can only update field configurations used in company-managed (classic) projects.
The operation can set the renderer for text fields to the default text renderer
(text-renderer
) or wiki style renderer (wiki-renderer
). However, the
renderer cannot be updated for fields using the autocomplete renderer
(autocomplete-renderer
).
Permissions required: Administer Jira global permission.
The ID of the field configuration.
Returned if the request is successful.
Updates a field configuration scheme.
This operation can only update field configuration schemes used in company-managed (classic) projects.
Permissions required: Administer Jira global permission.
The ID of the field configuration scheme.
The details of the field configuration scheme.
Returned if the request is successful.
Protected
Static
initialize
This resource represents issue field configurations. Use it to get, set, and delete field configurations and field configuration schemes.
See
https://developer.atlassian.com/cloud/jira/platform/rest/v3/api-group-issue-field-configurations