Entity
Task Updates
Create and retrieve progress updates for tasks.
Endpoints
GET
/api/v2/taskUpdatesRetrieve a listGET
/api/v2/taskUpdates/{id}Retrieve one recordPOST
/api/v2/taskUpdatesCreate recordsCreate a task update
POST
/api/v2/taskUpdatesCreate a task updatecurl -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'