Sign in

Update time entry

documented

Update a time entry for a card.

PUT /projects/{project_id}/cards/{card_id}/time_entry/{timeentry_id}.jsonCardsno 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.breeze.pm/graphql" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -d '{"query":"mutation UpdateTimeEntry($input: UpdateTimeEntryInput!) { updateTimeEntry(input: $input) { timeEntry { id hours date comment } } }","variables":{"input":{"timeEntryId":"{{$timeentry_id}}","projectId":"{{$project_id}}","cardId":"{{$card_id}}","hours":{{$hours}},"date":"{{$date}}","comment":"{{$comment}}"}}}'"}
Update time entry · Breeze · OpenIntegrations