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" | jq