Create time record
documentedCreate a new time record for a project. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/reports-and-filters/expenses-filter.html))
POST /api/v1/projects/{project_id}/time-recordsProjectsno 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" -X POST -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" -H "Accept: application/json" -H "Content-Type: application/json" -d '{"value": {{$value}}, "user_id": {{$user_id}}, "job_type_id": {{$job_type_id}}, "record_date": "{{$record_date}}", "billable_status": {{$billable_status}}}'