Create time entry
documentedCreate a time entry for a card.
POST /projects/{project_id}/cards/{card_id}/time_entry.jsonCardsno 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://api.breeze.pm/graphql" \
-X POST \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
-d '{"query":"mutation TimeEntryCreate($input: TimeEntryCreateInput!) { timeEntryCreate(input: $input) { timeEntry { id } } }","variables":{"input":{"projectId":"{{$project_id}}","cardId":"{{$card_id}}","startTime":"{{$start_time}}","endTime":"{{$end_time}}","description":"{{$description}}","duration":{{$duration}},"userId":"{{$user_id}}"}}}'