recent_changes
Fetch board changes since a given timestamp to monitor updates without webhooks. Pass the latest known entry time to get newer changes.
Instructions
Fetch a board's changelog (Kanban Tool has no webhooks; poll this instead).
since is required. Pass the created_at of the newest entry you've
already seen; on the first poll, use datetime.now(UTC) - timedelta(hours=1)
(or whichever lookback window matches your use case). Entries come
newest-first. Poll sparingly: 30-120s cadence, not per-keystroke.
Raises ValueError if since is None (rather than fetching the
full history) — keeps responses bounded by construction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| board_id | Yes | ||
| since | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |