Sign in

Update entry

documented

Update a time entry.

PUT /v2/entries/{id}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://api.nokotime.com/v2/entries/{{$entry_id}}" \
  -X PUT \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -d '{"date": "{{$date}}", "minutes": {{$minutes}}, "description": "{{$description}}", "project_id": {{$project_id}}, "project_name": "{{$project_name}}", "source_url": "{{$source_url}}"}'