Authorizations
API key authentication using Bearer token format
Body
- Option 1
- Option 2
- Option 3
- Option 4
Meeting data for import from external sources. At least one of the following fields must be provided:
meetingNoteTitle
, calendarEventTitle
, notes
, or transcript
.
Title from the external meeting note. This is one of the four fields that can satisfy the minimum content requirement.
"Q4 Board Meeting Notes"
External source (e.g., "fireflies", "granola"). Used to facilitate link backs using the meetingNoteId. Common providers include meeting recording services and note-taking applications.
"fireflies"
External system's meeting note identifier. Updates existing meeting if matched. This allows you to update the same meeting multiple times from your external system.
"external_note_123"
Name of meeting creator
"John Doe"
Email of meeting creator. Matches on workspace members to take ownership of the meeting from the API key holder. If this email matches a workspace member, they will become the owner of the imported meeting.
"john@example.com"
Array of attendee objects. Each object may contain an optional name and/or email. At least one of name or email should be provided for each attendee.
[
{
"name": "Alice Jones",
"email": "alice@acmecorp.com"
},
{ "email": "carmen@sandiego.com" }
]
Calendar system's event identifier for linking to original calendar event
"cal_event_456"
Title from calendar event. This is one of the four fields that can satisfy the minimum content requirement.
"Q4 Board Meeting"
Meeting date/time (ISO 8601 format). Defaults to current time if not provided. Used for chronological organization of meetings.
"2024-12-15T14:00:00Z"
Meeting notes content in markdown format. This is one of the four fields that can satisfy the minimum content requirement. Supports rich formatting for detailed meeting records.
"Meeting notes markdown content here..."
Meeting transcript content in markdown format. This is one of the four fields that can satisfy the minimum content requirement. Full transcript for comprehensive meeting analysis.
"Full meeting transcript markdown content here..."
Response
Meeting created successfully
Created meeting public ID
"abc123def456"