I've been able to successfully create a ticket in JIRA and have been for a while now, however I've recently run into an issue with creating a ticket in a different project that has a custom field. After some research, I've identified the field as customfield_10125, however when I try to populate that with the following:
'customfield_10125': {'Teams': 'Application Ops'}
or
"customfield_10125": { "name": "Application Ops" }
or
"customfield_10125": "Application Ops"
etc...
It will just throw up the following error:
response text = {"errorMessages":[],"errors":{"customfield_10125":"Could not find valid 'id' or 'value' in the Parent Option object."}}
I was really hoping that someone could point out my syntax error and help me out with this.
Clearly I'm a dumb... anyway, it worked when I changed "name" to "value". I can't believe that took all day to try.
'customfield_10125':
{'value': 'Application Ops'}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.