Hi Atlassian,
I want to get custom field value after issue creation. Here is my code where I'm setting value to custom field:
void set_custom_field_value(String value, String destField, Issue issue)
{
CustomFieldManager cm = ComponentAccessor.getCustomFieldManager();
CustomField f = cm.getCustomFieldObjectByName(destField);
DefaultIssueChangeHolder ch = new DefaultIssueChangeHolder();
f.updateValue(null, issue, new ModifiedValue(issue.getCustomFieldValue(f),
value), ch);
}
This works and I can see value in the custom field, but I couldn't get it from Rest API. It gave me null.
This works in jira 7.x perfectly, I can get the custom field value.
Sorry for bad English :).
Regards,
Mamikon
REST API endpoint for Jira Server and Jira Cloud is different. Can I know how you are getting the custom field value using REST API?
Thanks,
Moga
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.