Skip to main content
Celoxis API v2
LiveUpdated 2 Sep 2026

Entity

Task Updates

Create and retrieve progress updates for tasks.

Endpoints

GET/api/v2/taskUpdatesRetrieve a list
GET/api/v2/taskUpdates/{id}Retrieve one record
POST/api/v2/taskUpdatesCreate records

Create a task update

POST/api/v2/taskUpdatesCreate a task update
bash
curl -X POST -H 'Content-Type: application/json' \
  -H 'Authorization: bearer YourTokenHere' \
  -d '{
    "task": "API Task",
    "percentComplete": "50"
  }' \
  'https://app.celoxis.com/psa/api/v2/taskUpdates'