Hello. During issue creation with Jira Service Desk , custom fields get ignored i.e. an issue gets created with mandatory fields, like description, summary, etc., however custom fields are not populated Syntax of CF like "customfield_21264": "Hello" ______________________________________________ I can successfully set this CF if I create issue via HTTP with Curl $ curl -k -u 'account:password' --request POST --url 'https://jira-host/rest/api/2/issue' --header 'Accept: application/json' --header 'Content-Type: application/json' --data '{"fields": { "project": { "key": "PROJ" }, "summary": "Pictures", "description": "SIEM-Eng", "issuetype": {"name":"Event"}, "customfield_21264": "Hello"}}'
... View more