My Json is as below.
{
"fields": {
"project":
{
"id": "10000"
"key": "ABC"
},
"summary": "No REST for the Wicked.",
"description": "Creating of an issue using ids for projects and issue types using the REST API",
"issuetype": {
"id": "10000"
}
}
}
Found it In your JSON object, there is a missing comma after the "id": "10000"
line. Here is the corrected version of your JSON object:
{
"fields": {
"project":
{
"id": "10000",
"key": "ABC"
},
Hi @Skynet ,
Great to know that you found the answer, please can you mark your answer as ACCEPTED, so that it can be identified that way when people search for a similar query.
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.