Entity
Time Entries
Retrieve, create and update project, task, Workflow App and non-project time entries.
Endpoints
GET
/api/v2/timeEntriesRetrieve a listGET
/api/v2/timeEntries/{id}Retrieve one recordPOST
/api/v2/timeEntriesCreate recordsPATCH
/api/v2/timeEntriesUpdate recordsDELETE
/api/v2/timeEntries/{id}Delete a recordCreate task time
POST
/api/v2/timeEntriesLog time against a taskcurl -X POST \
-H 'Content-Type: application/json' \
-H 'Authorization: bearer YourTokenHere' \
-d '{
"date": "2026-09-01",
"hours": "8",
"timeCode": 109369,
"task": 15984213,
"isBillable": false
}' \
'https://app.celoxis.com/psa/api/v2/timeEntries'Create non-project time
Omit both task and app when creating non-project time.
{
"date": "2026-09-01",
"hours": "8",
"timeCode": 109372
}