Update time entry
documentedUpdate an existing time entry.
PUT /timetracking/business/{businessId}/time_entries/{timeEntryId}Time Trackingno implementation yet0 runsNo 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}}}}'