Get edit issue metadata
GET
/rest/api/3/issue/{issueIdOrKey}/editmeta
Issues
1.
overrideScreenSecurity=true
skips this condition.2.
overrideScreenSecurity=true
skips this condition.3.
4.
5.
6.
overrideEditableFlag=true
skips this condition.7.
jira.issue.editable
property to false
. overrideEditableFlag=true
skips this condition.8.
9.
jira.permission.*
workflow properties.overrideScreenSecurity
When this flag is true
, then this endpoint skips checking if fields are available through screens, and field configuration (conditions 1. and 2. from the list above).overrideEditableFlag
When this flag is true
, then this endpoint skips checking if workflow is present and if the current step is editable (conditions 6. and 7. from the list above).Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://jira.local:8080/jira/rest//rest/api/3/issue//editmeta'
Response Response Example
200 - Success
{
"fields": {
"summary": {
"required": false,
"schema": {
"type": "array",
"items": "option",
"custom": "com.atlassian.jira.plugin.system.customfieldtypes:multiselect",
"customId": 10001
},
"name": "My Multi Select",
"key": "field_key",
"hasDefaultValue": false,
"operations": [
"set",
"add"
],
"allowedValues": [
"red",
"blue"
],
"defaultValue": "red"
}
}
}
Request
Path Params
issueIdOrKey
stringÂ
required
Query Params
overrideScreenSecurity
stringÂ
optional
overrideEditableFlag
stringÂ
optional
Responses
Modified at 2023-07-13 03:27:27