Sign in

Update timesheet

documented

Update a timesheet entry.

PUT /Payroll/Timesheet/{id}Payrollno 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.saasu.com/Payroll/Timesheet/{{$id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"Id": {{$id}}, "LastUpdatedId": "{{$last_updated_id}}", "LastModifiedDateUtc": "{{$last_modified_date_utc}}", "CreatedDateUtc": "{{$created_date_utc}}", "LastModifiedByUserId": {{$last_modified_by_user_id}}, "ContactId": {{$contact_id}}, "StartTime": "{{$start_time}}", "FinishTime": "{{$finish_time}}", "BreakDurationInMinutes": {{$break_duration_minutes}}, "Notes": "{{$notes}}"}'"