Create a notepad node with the full transcript text.
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/nodes \ -H "Authorization: Bearer cgk_live_..." \ -H "Content-Type: application/json" \ -d '{ "type": "notepad", "position": {"x": 0, "y": 0}, "data": { "label": "Sprint Planning — March 17", "content": "Attendees: Sarah, James, Priya\n\nSarah: We need to decide on the caching layer. Redis vs Valkey.\nJames: Redis has better docs but Valkey is OSS and compatible. I vote Valkey.\nPriya: Agreed. Let'\''s set a deadline — end of sprint.\n\nDecision: Use Valkey for caching. Migration deadline: March 28.\n\nSarah: On API rate limiting — we'\''re seeing 429s from Pro plan customers.\nJames: Bump Pro from 100 to 200 req/min. Action item for me.\nPriya: Also add a retry-after header.\n\nAction items:\n- James: Bump Pro rate limit to 200 req/min\n- Priya: Add retry-after header to 429 responses\n- Sarah: Write ADR for Valkey decision" } }'
Step 4: Ask AI to extract decisions and action items
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/chats \ -H "Authorization: Bearer cgk_live_..." \ -H "Content-Type: application/json" \ -d '{"title": "Meeting Extraction"}'curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/chats/{chatId}/messages \ -H "Authorization: Bearer cgk_live_..." \ -H "Content-Type: application/json" \ -d '{ "content": "From the meeting notes on this board, extract: 1) All decisions (with rationale), 2) All action items (with owner and deadline), 3) Any open risks. Format each as a separate item.", "stream": false }'
After adding multiple meetings, ask AI to produce a digest across all of them.
cURL
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/chats/{chatId}/messages \ -H "Authorization: Bearer cgk_live_..." \ -H "Content-Type: application/json" \ -d '{ "content": "Generate a weekly digest of all meetings on this board. Group by: decisions made, action items with owners, and open risks. Keep it under 300 words.", "stream": false }'
Search past meetings for specific topics at any time:
cURL
curl -X POST https://api.chatgrid.ai/v1/boards/{boardId}/documents/search \ -H "Authorization: Bearer cgk_live_..." \ -H "Content-Type: application/json" \ -d '{"query": "when did we decide on the caching layer?", "limit": 3}'
Meeting transcripts are chunked and embedded like any other document. By tagging each transcript with date and attendees in the metadata, search results carry full provenance. When AI extracts decisions and action items, it performs semantic search across all meeting chunks then reasons over the matches. The sticky notes you create are regular nodes — you can vectorize them too, making decisions searchable independently of the raw transcript. Edges between sticky notes and meeting nodes create a traceable graph: every decision links back to the meeting where it was made.