fieldconfigurationscheme
assign-field-configuration-scheme-to-project
Assign field configuration scheme to project
Deprecated, use Field schemes which supports field association schemes.
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.
PUT /rest/api/3/fieldconfigurationscheme/project
| Flag | Type | Required | Description |
|---|---|---|---|
--body | string | No | request body (JSON string, @file, or - for stdin) |
Example:
jr fieldconfigurationscheme assign-field-configuration-scheme-to-projectcreate-field-configuration-scheme
Create field configuration scheme
Deprecated, use Field schemes which supports field association schemes.
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.
POST /rest/api/3/fieldconfigurationscheme
| Flag | Type | Required | Description |
|---|---|---|---|
--body | string | No | request body (JSON string, @file, or - for stdin) |
Example:
jr fieldconfigurationscheme create-field-configuration-schemedelete-field-configuration-scheme
Delete field configuration scheme
Deprecated, use Field schemes which supports field association schemes.
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.
DELETE /rest/api/3/fieldconfigurationscheme/{id}
| Flag | Type | Required | Description |
|---|---|---|---|
--id | string | Yes | The ID of the field configuration scheme. |
Example:
jr fieldconfigurationscheme delete-field-configuration-scheme --id <id>get-all-field-configuration-schemes
Get all field configuration schemes
Deprecated, use Field schemes which supports field association schemes.
Returns a paginated list of field configuration schemes.
Only field configuration schemes used in classic projects are returned.
Permissions required: Administer Jira global permission.
GET /rest/api/3/fieldconfigurationscheme
| Flag | Type | Required | Description |
|---|---|---|---|
--id | string | No | The list of field configuration scheme IDs. To include multiple IDs, provide an ampersand-separated list. For example, id=10000&id=10001. |
--maxResults | string | No | The maximum number of items to return per page. |
--startAt | string | No | The index of the first item to return in a page of results (page offset). |
Example:
jr fieldconfigurationscheme get-all-field-configuration-schemesget-field-configuration-scheme-mappings
Get field configuration issue type items
Deprecated, use Field schemes which supports field association schemes.
Returns a paginated list of field configuration issue type items.
Only items used in classic projects are returned.
Permissions required: Administer Jira global permission.
GET /rest/api/3/fieldconfigurationscheme/mapping
| Flag | Type | Required | Description |
|---|---|---|---|
--fieldConfigurationSchemeId | string | No | The list of field configuration scheme IDs. To include multiple field configuration schemes separate IDs with ampersand: fieldConfigurationSchemeId=10000&fieldConfigurationSchemeId=10001. |
--maxResults | string | No | The maximum number of items to return per page. |
--startAt | string | No | The index of the first item to return in a page of results (page offset). |
Example:
jr fieldconfigurationscheme get-field-configuration-scheme-mappingsget-field-configuration-scheme-project-mapping
Get field configuration schemes for projects
Deprecated, use Field schemes which supports field association schemes.
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.
GET /rest/api/3/fieldconfigurationscheme/project
| Flag | Type | Required | Description |
|---|---|---|---|
--maxResults | string | No | The maximum number of items to return per page. |
--projectId | string | No | The list of project IDs. To include multiple projects, separate IDs with ampersand: projectId=10000&projectId=10001. |
--startAt | string | No | The index of the first item to return in a page of results (page offset). |
Example:
jr fieldconfigurationscheme get-field-configuration-scheme-project-mappingremove-issue-types-from-global-field-configuration-scheme
Remove issue types from field configuration scheme
Deprecated, use Field schemes which supports field association schemes.
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.
POST /rest/api/3/fieldconfigurationscheme/{id}/mapping/delete
| Flag | Type | Required | Description |
|---|---|---|---|
--body | string | No | request body (JSON string, @file, or - for stdin) |
--id | string | Yes | The ID of the field configuration scheme. |
Example:
jr fieldconfigurationscheme remove-issue-types-from-global-field-configuration-scheme --id <id>set-field-configuration-scheme-mapping
Assign issue types to field configurations
Deprecated, use Field schemes which supports field association schemes.
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.
PUT /rest/api/3/fieldconfigurationscheme/{id}/mapping
| Flag | Type | Required | Description |
|---|---|---|---|
--body | string | No | request body (JSON string, @file, or - for stdin) |
--id | string | Yes | The ID of the field configuration scheme. |
Example:
jr fieldconfigurationscheme set-field-configuration-scheme-mapping --id <id>update-field-configuration-scheme
Update field configuration scheme
Deprecated, use Field schemes which supports field association schemes.
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.
PUT /rest/api/3/fieldconfigurationscheme/{id}
| Flag | Type | Required | Description |
|---|---|---|---|
--body | string | No | request body (JSON string, @file, or - for stdin) |
--id | string | Yes | The ID of the field configuration scheme. |
Example:
jr fieldconfigurationscheme update-field-configuration-scheme --id <id>