Update time record
documentedUpdate an existing time record. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/projects/whats-new.html?utm_source=openai))
PUT /api/v1/projects/{project_id}/time-records/{time_record_id}Projectsno 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://activecollab.com/api/v1/projects/{{$project_id}}/time-records/{{$time_record_id}}" \
-X PUT \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"value": {{$value}}, "record_date": "{{$record_date}}", "user_id": {{$user_id}}, "job_type_id": {{$job_type_id}}, "billable_status": {{$billable_status}}, "project_id": {{$project_id}}, "task_id": {{$task_id}} }'