Hi,
I’m trying to make a Javascript REST API call to create a story issue in my project. I’m trying to first make it function in Postman but i’m getting the error:
{
"errorMessages": [],
"errors": {
"summary": "Field 'summary' cannot be set. It is not on the appropriate screen, or unknown.",
"description": "Field 'description' cannot be set. It is not on the appropriate screen, or unknown.",
"customfield_11050": "Field 'customfield_11050' cannot be set. It is not on the appropriate screen, or unknown."
}
}
My JSON payload is :
{
"fields": {
"project": {
"key": "UN"
},
"summary": "Test REST",
"description": "Creating of an issue using project keys and issue type names using the REST API",
"issuetype": {
"id": "10000"
}
}
}
All topics founded tell that the problem comes from the the properties not existing but it does :