Not able to add labels/components in create issue using api

jagadeesh madhura
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 21, 2021

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."}}

1 answer

1 accepted

2 votes
Answer accepted
Bill Sheboy
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
May 21, 2021

Hi @jagadeesh madhura 

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

Suggest an answer

Log in or Sign up to answer