Remove a Child Tracker Item
Using the PATCH /v3/items/{itemId}/children endpoint we can remove a new child.
Request:
/v3/items/54218/children?mode=REMOVE
{
"itemReference": {
"id": 54217,
"name": "Night Mode Test",
"type": "TrackerItemReference"
},
"index": 0
}
* 
You need to provide the proper index alongside with the tracker item reference.
Response:
{
"itemReference": {
"id": 54217,
"name": "Night Mode Test",
"type": "TrackerItemReference"
},
"index": 0
}
The new item is removed form the first place of the child list and moved one level upper (it will be moved next to the parent item).
Was this helpful?