Add a New Child Tracker Item
Using the POST /v3/items/{itemId}/children endpoint we can add a new child.
Request Body:
{
"id": 54206
}
Response:
{
"itemReference": {
"id": 54206,
"name": "Auto Scale on Highway Test",
"type": "TrackerItemReference"
},
"index": 3
}
The new item (Auto Scale on Highway Test #54206) is added into the 3. index of the child list.
Was this helpful?