I have a custom field which is a checkbox. This also happens for a selection field that has options of None and Yes.
If it is unchecked, in the REST API for the Issue I get
"customfield_11025": null,
If it is checked I get
"customfield_11025": [
{
"self": "https://dmsidmsi.atlassian.net/rest/api/2/customFieldOption/10504",
"value": "Canceled",
"id": "10504"
}
],
This makes it impossible to define a structure to capture the JSON into. Regardless of which way I code it, when I encounter the opposite my progam panics because it doesn't match the defined structure.
Hi @Brad Hayes ,
add "if" and check if value is null. Now you can build structure for both options.
Best,
Michael
Thanks Michael. I was able to make it work doing that, but I was also curious why I was getting different values for different fields that according the administrator were both boolean values. Seems there's multiple ways to define fields and they produce different results.
brad
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.