Sign in

Create time tracking entry

documented

Create a new time tracking entry.

POST /time_tracking_entriesTime tracking entriesno 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.asana.com/api/1.0/tasks/{{$task_gid}}/time_tracking_entries" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"data": {"duration_minutes": {{$duration_minutes}}, "entered_on": "{{$entered_on}}", "attributable_to": "{{$attributable_to}}"}}'
Create time tracking entry · Asana · OpenIntegrations