Sign in

Update time entry

documented

Update an existing time entry.

PUT /timetracking/business/{businessId}/time_entries/{timeEntryId}Time Trackingno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.freshbooks.com/timetracking/business/{{$business_id}}/time_entries/{{$time_entry_id}}" \
  -X PUT \
  -H 'Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}' \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json' \
  -d '{"time_entry": {"is_logged": {{$is_logged}}, "duration": {{$duration}}, "note": "{{$note}}", "started_at": "{{$started_at}}", "client_id": {{$client_id}}, "identity_id": {{$identity_id}}, "project_id": {{$project_id}}}}'
Update time entry · FreshBooks · OpenIntegrations