Guides
Guide: List Board Meetings
How to paginate through a board's meetings using cursor-based pagination.
How to paginate through a board's meetings using cursor-based pagination.
Prerequisites
- A valid API token
- A board ID (see First API Call)
Fetch the First Page
curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?limit=10" \
-H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jqPaginate Through Results
If meta.hasMore is true, use meta.nextCursor to fetch the next page:
curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?limit=10&cursor=NEXT_CURSOR" \
-H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jqRepeat until hasMore is false.
Sort by Start Time
curl -s "https://app.imboard.ai/api/v1/boards/BOARD_ID/meetings?sort=startTime&order=desc" \
-H "Authorization: Bearer imb_pat_YOUR_TOKEN" | jqDraft Meetings Are Excluded
Meetings in draft status are private to the member who created them. You only ever see your
own drafts, so status=draft never returns another member's; a board access token has no user
identity and sees none. Pagination counts reflect only the meetings you can see.