Templates/Meeting Notes

Meeting Notes — Free Online Template

Capture meeting outcomes in a structured format that is easy to reference later. This template turns unstructured meeting notes into an organized spreadsheet with columns for the topic discussed, key decisions made, action items, the person responsible, and the deadline. Instead of burying important decisions in a wall of text, each row isolates a single discussion point so your team can quickly scan for what matters to them. The structured format also makes it possible to programmatically extract action items and push them into your task management system. Use the API to auto-create a meeting notes spreadsheet before each recurring meeting, pre-populated with agenda items from your calendar integration. After the meeting, update the spreadsheet with decisions and action items, then share the link in Slack so everyone has a single source of truth.

Preview

TopicDiscussion SummaryDecisionAction ItemOwnerDeadline
Q2 RoadmapReviewed feature priorities for April-JuneApproved mobile app MVP scopeDraft mobile spec docLena Park2026-03-28
Hiring UpdateThree candidates in final round for senior engExtend offer to candidate BSend offer letterTom Rivera2026-03-25
Bug TriagePayment timeout issue affecting 2% of checkoutsEscalate to P0Hotfix by end of weekAisha Patel2026-03-26

Create via API

Generate this meeting notes programmatically with a single POST request. The API returns a shareable URL that anyone can open in the browser.

curl
curl -X POST https://openofficeai.com/api/v1/sheets \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "title": "My Meeting Notes",
    "sheets": [{ "rows": [["Topic","Discussion Summary","Decision","Action Item","Owner","Deadline"],["Q2 Roadmap","Reviewed feature priorities for April-June","Approved mobile app MVP scope","Draft mobile spec doc","Lena Park","2026-03-28"],["Hiring Update","Three candidates in final round for senior eng","Extend offer to candidate B","Send offer letter","Tom Rivera","2026-03-25"]] }]
  }'

Returns { "id": "...", "url": "...", "created_at": "..." }. See the full API docs for formatting, formulas, and export options.

What's included

This template comes with 6 columns designed for a standard meeting notes workflow. Each column can be renamed, reordered, or extended through the API or the browser editor.

Topic

The agenda item or subject discussed during the meeting.

Discussion Summary

A brief summary of the key points raised during discussion.

Decision

The outcome or decision made regarding this topic, if any.

Action Item

A specific next step that needs to be completed after the meeting.

Owner

The person responsible for completing the action item.

Deadline

The date by which the action item should be completed.

How to customize

This template is a starting point. Here are specific ways to adapt it to your workflow:

1

Add an "Agenda Item #" column to number each topic, making it easy to reference specific discussion points in follow-up conversations.

2

Include a "Follow-up Date" column separate from the deadline to schedule check-ins on long-running action items.

3

Add a "Status" column for action items (Open, In Progress, Done) so you can review outstanding items at the start of the next meeting.

Frequently asked questions

Can I auto-create meeting notes from my calendar?

Yes. Integrate your calendar API (Google Calendar, Outlook) with a script that triggers before each meeting. The script pulls the meeting title and agenda, then calls the OpenOfficeAI API to create a pre-populated meeting notes spreadsheet with the agenda items as rows.

How do I extract action items into my task manager?

Use the GET endpoint to read the spreadsheet data as JSON. Filter for rows where the Action Item column is not empty, then push those items into Jira, Linear, or Asana via their respective APIs. This turns your meeting notes into a lightweight workflow automation.

Can multiple people edit the meeting notes at the same time?

Yes. The browser editor supports concurrent editing. Share the link with your team before the meeting starts, and anyone with edit access can add notes in real time. Changes are saved automatically and visible to all participants.

Related templates

Ready to create your meeting notes?

Sign up for free and start building spreadsheets in seconds — from the browser or via the API.