time entries

Partially updates time entry with provided id. Only provided fields will be updated.

patch/companies/{companySlug}/timeEntries/{timeEntryId}

Request body

datestring date

Date of the time entry, format yyyy-MM-dd

hoursnumber double

Number of hours worked

startTimestring

Start time of the work, format HH:mm (optional)

descriptionstring

Description of work performed (visible on invoices)

internalNotestring

Internal note (not visible on invoices)

activityIdinteger

ID of the activity this time entry belongs to

projectIdinteger

ID of the project this time entry belongs to (optional)

Example request

{
  "date": "2024-03-15",
  "hours": 7.5,
  "startTime": "09:00",
  "description": "Implemented new feature",
  "internalNote": "Need to follow up with client",
  "activityId": 12345,
  "projectId": 67890
}

Response

OK

Changes

No recorded changes to this endpoint across all 1 revision of this API.