I actually want to enable First time Resolution check box via python which is displayed in the Resolved workflow in a separate window I could fetch the feild Id. I have tried many ways but couldn't succeed.(Python)
here are few ways I have tried:
issue.fields.customfield_10112 = [{"value": "Resolved First Time"}]
or[{"value": "Yes"}]
The above hasn't worked.
fields = {"customfield_10112": [{"value": "Resolved First Time"}]}
issue.update(fields=fields)
the above method I have tried throws an error-text: Field 'customfield_10112' cannot be set. It is not on the appropriate screen, or unknown.
I am attaching a screenshot of which checkbox should be enabled.
I would request anyone to help me on this.