The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results forĀ 
Search instead forĀ 
Did you mean:Ā 

Correct customfield text in

jialin
May 26, 2022

Hello,

We were trying to create JIRA issues using the REST API. So far we've successfully created a 'barebone' ticket, by supplying the minimum fields, which proved that the route was good.

We had trouble creating the target ticket, which had mandatory custom fields. And these fields look like so from HTTP GET:

"customfield_10000": "xxx",
"customfield_20000":{
"self": "https://company.atlassian.net/rest/api/2/customFieldOption/20000",
"value": "yyy",
"id": "22222"
},

so in our HTTP POST, we specified:

"fields": {
"project": {"id": "12345"},
"summary": "foo",
"issuetype": {"id": "12345"},
"customfield_10000": "xxx",
"customfield_20000": {"id": "22222"},
}

which returned with:

error: {"errorMessages":["There was an error parsing JSON. Check that your request body is valid."]}

the 'barebone' ticket creation which succeded had:

"fields": {
  "project": {"id": "54321"}
  "summary": "foo",
  "issuetype": {"id": "10003"},
}

so it would seem the trouble-maker here were the two new customfields. What were we missing here?

1 answer

1 accepted

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

1 vote
Answer accepted
jialin
May 26, 2022

found the problem!

turned out that if the last JSON clause had a comma then the entire block would be treated as illegal JSON. once removed that comma, we started receiving meaningful error messages for the individual customfiels, then, by following the hints, we ended up with a correct JSON block, and the issue creation was then successful!!

hooray!!!

DEPLOYMENT TYPE
CLOUD
PRODUCT PLAN
STANDARD
TAGS
AUG Leaders

Atlassian Community Events