Moving a Tracker Item in the Tracker Outline
We have introduced a few endpoints to support this functionality:
• GET /v3/items/{itemId}/children - Retrieve the list of child tracker items of a tracker item.
• PUT /v3/items/{itemId}/children - Reorder the child tracker items of a tracker item.
• POST /v3/items/{itemId}/children - Add a new child tracker item of a tracker item.
• PATCH /v3/items/{itemId}/children - Insert or remove a child tracker item of a tracker item.
If you are about to move an item to the tracker root level you can use the following endpoints:
• GET /v3/trackers/{trackerId}/children - Retrieve the list of child tracker items of a tracker.
• PUT /v3/trackers/{trackerId}/children - Reorder the child tracker item references of a tracker.
• POST /v3/trackers/{trackerId}/children - Add a new child tracker item of a tracker.
• PATCH /v3/trackers/{trackerId}/children - Insert or remove a child tracker item of a tracker.
These endpoints work the same way, only the outline level difference is present.
Therefore we will look into the tracker item related endpoints: