this is my json:
{ "fields": {
"project": { "id": "10001" },
"summary": "New issue from rest",
"description": "Order entry fails when selecting supplier",
"issuetype": { "id": "10002" }
}
}
and this is the error im getting
{ "errorMessages": [],
"errors": { "summary": "Field 'summary' cannot be set. It is not on the appropriate screen, or unknown.", "description": "Field 'description' cannot be set. It is not on the appropriate screen, or unknown." }}
Try this JSON.
"fields": {
"summary": "New issue from talend api test",
"issuetype": {
"id": "10001"
},
"project": {
"id": "10024"
},
"priority": {
"id": "2"
},
"description": {
"type": "doc",
"version": 1,
"content": [
{
"type": "paragraph",
"content": [
{
"text": "This is the description.",
"type": "text"
}
]
}
]
}
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.