I am using JIRA Cloud REST API to create an Epic issue.
Just to be clear customfield_10011 is actually "Epic Name" field.
Here's code snippet I am using to create Epic :
def createDoc = [
fields: [
description: "NOT SPECIFIED",
"customfield_10011" : "HGHGH",
project: [
id: 10255
],
issuetype: [
id: EpicTypeId
],
summary: "Epic Summary"
]
]
def resp = post("/rest/api/2/issue")
.header("Content-Type", "application/json")
.body(createDoc)
.asObject(Map)
With this I am getting an error as :
{ "errorMessages": [], "errors": { "customfield_10011": "Field 'customfield_10011' cannot be set. It is not on the appropriate screen, or unknown." } }
Also, When I try to update "customfield_10011" on existing epic, it works from REST API.
FYI, I already have added the field added on screen. (In fact I am using same screen to create, edit and view Epic)
Any suggestion/help appreciated.
Thanks and Regards,
Sameer B
Hello @Sameer Bhangale
When you update an Epic, the edit screen is used. When you create an Epic, the create screen is used; the two screens are not the same.
Double check that you can create an Epic via the web interface in that project, and that the Name and Summary fields are there on the create screen, like this:
If you have already double checked that the Name and Summary fields are on the Create screen and that one screen is used for creating, editing and viewing an Epic, then it might be a coding issue in the body of the request. Try removing the inverted commas around the field definition, like this:
fields: [
description: "The Epic Description",
customfield_10011: "The Epic Name",
summary: "The Epic Summary",
project: [
id: 10255
],
issuetype: [
name: "Epic"
]
]
Try referring to the issueType by its name 'Epic' not by its ID, as show above, just in case you're using the wrong ID.
@David Bakkers Thank You for helping.
Actually I was getting wrong issue type id for epic.
Corrected it and now it is working.
Thanks and Regards,
Sameer B.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You may have the field on the issues "edit" screen, but the error message is clear - you do not have it on the "create" screen.
This can also happen if you do not have permission to create issues, the REST API can report missing fields instead of "no create permission"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
For those attempting to set a custom field of type labels through the REST API that are getting this issue. Try moving the configuration outside of the fields key and into update, like so:
```
{
"fields": {
// your other fields
},
"update": {
"customfield_10029": [
{ "add": "ANY_VALUE" }
]
}
}
```
That did the trick for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.