can't remove component from an issue - get array index error from API

Leonardo Merza December 8, 2017

Jira 7.1.10

I'm trying to remove a 'Merge Code' component from an issue with the endpoint:

PUT /rest/api/2/issue/{issueIdOrKey}

and the json data:

{'update': {'components': [{'remove': [{'name': 'Merge Code'}]}]}}

 

the error I keep getting back is:

"Can not deserialize instance of com.atlassian.jira.issue.fields.rest.json.beans.ComponentJsonBean out of START_ARRAY token↵ at [Source: N/A; line: -1, column: -1]"

 

I can add the component just fine but not remove.

1 answer

0 votes
Aleksandr Zuevich
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.
December 10, 2017

Hi Leonardo,

what if try {"update": {"components":[{"remove": {"name": "Merge Code"}}]}}

Suggest an answer

Log in or Sign up to answer