Time

List timesheet entries

GET
/api/public/v3/time/timesheet_entries

Query Parameters

employee_ids?array<string>
ends_on?string
starts_on?string

Response Body

application/json

application/json

curl -X GET "https://example.com/api/public/v3/time/timesheet_entries"
{  "data": [    {      "id": 0,      "employee_id": 0,      "project_id": null,      "starts_at": null,      "ends_at": null,      "date": "string",      "minutes": 0,      "type": null,      "comment": null    }  ],  "metadata": {    "pagination": {      "page": 0,      "pages": 0,      "count": 0,      "items": 0    }  }}