Hello, I'm still learning how to parse Issues data from Jira API. To make it short for you, I have an Issue which is Flagged :
When I request this url :
https://project,atlassian.net/rest/api/2/issue/SCRUM-14?fields=customfield_10021
I got this reponse in POSTMAN :
As you can see the field for the flagged is there.
I'm trying to parse the data in backend :
Object flagField = fields.get("customfield_10021");
logger.debug("Raw customfield_10021 data for {}: {}", issueKey, flagField);
Every field in the Issue is visible and well parsed and saved , except this always null.
Sorry it was my mistake , I missed the customfield in the jql parameter.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.