I'm trying to create issue with component and payload, I have added fields to the create issue screen, and from ui I can see those fields in create screen and able to create issues from ui but when I try using api its throwing error
If I remove labels and components from payload able to create issue, its throwing error when I pass components and labels in payload
Any help in fixing these issues ? ...
create issue with component payload-
{
"fields": {
"project": {
"id": "10026"
},
"issuetype": {
"id": "10005"
},
"summary": "Testcase created using rest assured",
"components": [
"{\"id\":\"10042\"}"
]
}
}
error:
{"errorMessages":[],"errors":{"components":"The components value must be an object"}}
create issue - LABLES PAYLOAD:
{
"fields": {
"project": {
"id": "10026"
},
"issuetype": {
"id": "10005"
},
"summary": "Testcase created using rest assured",
"components": [
],
"lables": [
"Status",
"Zephyr"
]
}
}
error:
Field 'lables' cannot be set. It is not on the appropriate screen, or unknown."}}
Your labels field name is spelled incorrectly as: "lables". For components, it appears you have some extra escaping characters in the payload.
Please take a look at the documentation to confirm your use of the layouts:
Best regards,
Bill
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.