list_all_notes
Bulk-fetch up to 5,000 Productboard notes via V2 API with auto-pagination and filters for archived, processed, owner, source, and date ranges.
Instructions
Bulk-fetch Productboard notes via V2 API with auto-pagination (~100/page). Safety limit: 5000 notes max. DEFAULT: returns processed + unprocessed notes that are NOT archived. To include archived notes set archived=true. V2 response shape: each note has top-level {id, type, links{self,html}, fields{...}, relationships{...}, createdAt, updatedAt, metadata}. NOTE: v2 no longer returns followers[], embedded comments, totalResults, or features[].importance. Use links.html in place of v1 displayUrl. Linked features are now under /notes/{id}/relationships (not inline) — use get_note_relationships per note if you need them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Safety limit (default 5000) | |
| archived | No | Filter by archived status. Default: false (archived notes are hidden). Set true to include or to fetch only archived notes. | |
| createdTo | No | ISO 8601 date-time — notes created on/before (inclusive) | |
| processed | No | Filter by processed status (true=processed, false=unprocessed). Default: both. | |
| updatedTo | No | ISO 8601 date-time — notes updated on/before (inclusive) | |
| ownerEmail | No | Filter by owner email. Requires members:pii:read scope on the access token. | |
| createdFrom | No | ISO 8601 date-time — notes created on/after (inclusive) | |
| updatedFrom | No | ISO 8601 date-time — notes updated on/after (inclusive) | |
| sourceSystem | No | Filter by metadata.source.system (v2 equivalent of v1 source.origin). NOTE: source metadata may be empty during the v1→v2 transition; use only if you've verified data is populated for your workspace. | |
| sourceRecordId | No | Filter by metadata.source.recordId. |