Data Browser - Viewing Site  Sector 23 Code Bank Logged in as:  Guest  




           


Update or Add Custom Field in JIRA using Atlassian C# API
Update or Add Custom Field in JIRA using Atlassian C# API is not quite clear. It will not update if you use the CustomFields property explicitly. Instead use this shorthand, and it will work.


Issue issue = // (get your issue here)
if (issue[fieldName] != fieldValue)
{
issue[fieldName] = fieldValue;
issue.SaveChanges();
}

Created By: amos 4/11/2019 12:53:48 PM