Move tasks
POST
/api/v2/tasks/moveMove one or several tasks to another projectSend tasks as an array of task IDs and project as the destination project ID.
curl -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: bearer YourTokenHere' \
-d '{
"tasks": [
99259,
99260,
99261
],
"project": 12345
}' \
'https://app.celoxis.com/psa/api/v2/tasks/move'