Update time entry
documentedUpdate an existing time entry.
PATCH /v2/time_entries/{TIME_ENTRY_ID}Timesheetsno 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.harvestapp.com/v2/time_entries/{{$TIME_ENTRY_ID}}" \
-X PATCH \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-H "Harvest-Account-Id: {{HARVEST_ACCOUNT_ID}}" \
-H "User-Agent: HarvestKeychains" \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-d '{"project_id": {{$project_id}}, "task_id": {{$task_id}}, "spent_date": "{{$spent_date}}", "started_time": "{{$started_time}}", "ended_time": "{{$ended_time}}", "hours": {{$hours}}, "notes": "{{$notes}}"}'