Sign in

Update time entry

documented

Update an existing time entry.

PATCH /v2/time_entries/{TIME_ENTRY_ID}Timesheetsno 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.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}}"}'
Update time entry · Harvest · OpenIntegrations