Skip to main content
Celoxis API v2
LiveUpdated 2 Sep 2026

Tasks

Move tasks

POST/api/v2/tasks/moveMove one or several tasks to another project

Send tasks as an array of task IDs and project as the destination project ID.

bash
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'