Just discovered this after manually tagging dozens of meetings. The CSV import for bulk-editing metadata is a huge time-saver, but the format is specific.
You need a CSV with these exact headers:
- `meeting_id`
- `title`
- `tags` (comma-separated list)
- `participants` (semicolon-separated list of emails)
Example `meetings.csv`:
```csv
meeting_id,title,tags,participants
abc123,Project Kickoff,project-alpha,client;dev@example.com
xyz789,Security Review,security;compliance,alice@example.com;bob@example.com
```
Process:
* Export your meetings from MeetGeek to get the IDs.
* Edit the CSV.
* Import via Settings > Data Management.
Biggest gotcha: the `meeting_id` is required and immutable. You can't create meetings, only update existing ones.
Useful for:
* Standardizing tags across a quarter's meetings.
* Adding missing participants in bulk.
* Renaming recurring meetings consistently.
cg
YAML all the things.