Kaneo Logo
Time Entries

Update Time Entry

Update an existing time entry

PUT
/time-entry/{id}

Authorization

bearerAuth
AuthorizationBearer <token>

API Key authentication

In: header

Path Parameters

id*string

Request Body

application/json

startTime*string
endTime?string
description?string

Response Body

application/json

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