We're trying to use the JIRA REST API to create issues on a project. Below is the command and JSON we're using. Keep getting a 400 error saying:
{"errorMessages":[],"errors":{"Environment(s) Affected":"Field 'Environment(s) Affected' cannot be set. It is not on the appropriate screen, or unknown."}}
Any suggestions how we can get the command to run successfully? The Environment(s) Affected field is a multi-selection field.
curl -i -D- -u 'user:pass' -X POST -d @./create_issue.json -H "Content-Type: application/json" https://jira.example.com/rest/api/2/issue/
$ cat create_issue.json { "fields": { "project": { "key": "TEST" }, "summary": "TEST Issue Creation", "description": "Testing JIRA integration. Ticket can be closed.", "Environment(s) Affected": "None", "issuetype": { "name": "Incident" } } }
Hi Doug,
Since "Environment(s) Affected" is a custom field, you will need to refer to it using the "customfield_1234569" notation rather than the field name. Only system fields can be referred to by name. To find the ID for your custom field, you can either pull the createmeta or look in your custom field management page and see the ID in the URL when you're modifying that particular field.
Look for the heading "Example of creating an issue using custom fields" on this page. https://developer.atlassian.com/jiradev/jira-apis/jira-rest-apis/jira-rest-api-tutorials/jira-rest-api-example-create-issue
Thanks, Josh. I just tried using the custom field ID and it did work before your answer came in. Wasn't aware custom fields had to be referenced by the ID. Wish the error messaging returned would be improved to mention that.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.