Skip to main content
Celoxis API v2
LiveUpdated 2 Sep 2026

Entity

Time Entries

Retrieve, create and update project, task, Workflow App and non-project time entries.

Endpoints

GET/api/v2/timeEntriesRetrieve a list
GET/api/v2/timeEntries/{id}Retrieve one record
POST/api/v2/timeEntriesCreate records
PATCH/api/v2/timeEntriesUpdate records
DELETE/api/v2/timeEntries/{id}Delete a record

Create task time

POST/api/v2/timeEntriesLog time against a task
bash
curl -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.

json
{
  "date": "2026-09-01",
  "hours": "8",
  "timeCode": 109372
}