I have a parent type call TaskList. A TaskList has many Tasks.
The simple case question that I have is how to move a Task from one TaskList to another.
I run a search query to find the set of Tasks that I want to move. The Tasks then are in the _embedded attribute of the JSON that comes back from that search. I want to then move those elements to a different TaskList. How would I do this?
Would I submit a POST to /tasklists/x with the _embedded Tasks as the body of that request?
Would I submit a PATCH to /tasks/y with a tasklist_id attribute already set?
What's the proper way to do this?
Thanks!