EaserixDocs
DevelopersAPI referenceCronCrunchEntries

List time entries

The caller's OWN entries only — sharing a project never exposes anyone's hours, so there is no scope lens here. Ordered started_at descending, hard limit 500. from/to filter on started_at; tagId filters to entries carrying that tag.

View as Markdown
GET
/v1/time-entries
AuthorizationBearer <token>

In: header

Query Parameters

from?string
Formatdate-time
to?string
Formatdate-time
projectId?string
tagId?string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/time-entries"
{  "entries": [    {      "id": "string",      "projectId": "string",      "projectName": "string",      "projectColor": "string",      "clientName": "string",      "description": "string",      "startedAt": "2019-08-24T14:15:22Z",      "endedAt": "2019-08-24T14:15:22Z",      "durationSeconds": 0,      "isRunning": true,      "isBillable": true,      "billingStatus": "string",      "tags": [        {          "id": "string",          "name": "string",          "color": "string",          "created": "2019-08-24T14:15:22Z"        }      ]    }  ]}