Sign in

Create time record (within a project)

documented

Create a time record for a given project. ([developers.activecollab.com](https://developers.activecollab.com/api-documentation/v1/reports-and-filters/expenses-filter.html))

POST /projects/{project_id}/time-recordsTime Recordsno 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://app.activecollab.com/{{$account_id}}/api/v1/projects/{{$project_id}}/time-records" \
  -X POST \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "X-Angie-AuthApiToken: {{ACTIVECOLLAB_SECRET}}" \
  -d '{"task_id": {{$task_id}}, "value": {{$value}}, "user_id": {{$user_id}}, "job_type_id": {{$job_type_id}}, "record_date": "{{$record_date}}", "billable_status": {{$billable_status}} }'
Create time record (within a project) · activecollab · OpenIntegrations