Kaneo Logo
Time Entries

Create Time Entry

Create a new time entry for a task

POST
/time-entry

Authorization

bearerAuth
AuthorizationBearer <token>

API Key authentication

In: header

Request Body

application/json

taskId*string
startTime*string
endTime?string
description?string

Response Body

application/json

curl -X POST "https://cloud.kaneo.app/api/time-entry" \  -H "Content-Type: application/json" \  -d '{    "taskId": "string",    "startTime": "string"  }'
{
  "id": "string",
  "taskId": "string",
  "userId": "string",
  "description": "string",
  "startTime": null,
  "endTime": null,
  "duration": 0,
  "createdAt": null
}