Whenever I try to create labels for a new issue (either when I'm creating it or after it's been created) I receive a 400 Bad Request response from the server and the following body:
{
"errorMessages": [],
"errors": {
"labels": "Field 'labels' cannot be set. It is not on the appropriate screen, or unknown."
}
}Here's an example of how I'm attempting to add the label with a PUT request:
{
"update": {
"labels": [ {"add": "automated"} ]
}
}Again, I'm able to create issues just fine - and the labels field is displayed when attempting to create an issue through JIRA normally, so I'm sort of at a loss for why this could be happening.