Notetaker

Invite Notetaker to meeting

Adds a Notetaker bot to the specified meeting.

<div id="admonition-info">ℹ️ <b>Nylas doesn't de-duplicate Notetaker bots</b>. Every <code>POST /v3/grants/&lt;NYLAS_GRANT_ID&gt;/notetakers</code> request you make invites a new Notetaker to the specified meeting.</div>
post/v3/grants/{grant_id}/notetakers

Request body

join_timeinteger

When the Notetaker bot should join the meeting, in seconds using the Unix timestamp format. If you don't specify a time, Notetaker joins the meeting immediately.

If you provide a time that's in the past, Nylas returns an error.

meeting_linkstring required

A meeting invitation link that Notetaker uses to join the meeting.

namestring

The display name for the Notetaker bot.

Example request

{
  "join_time": 1732657774,
  "meeting_link": "https://meet.google.com/xyz-abcd-ijk",
  "meeting_settings": {
    "action_items": true,
    "action_items_settings": {
      "custom_instructions": "Only return the 5 most important action items."
    },
    "audio_recording": true,
    "leave_after_silence_seconds": 360,
    "summary": true,
    "summary_settings": {
      "custom_instructions": "Return this summary in the MEDPIC sales methodology."
    },
    "transcription": true,
    "video_recording": true,
    "transcription_settings": {
      "expected_languages": [
        "en",
        "es"
      ],
      "fallback_language": "en",
      "keywords": [
        "Nylas",
        "AssemblyAI"
      ],
      "use_speaker_names_as_keywords": true
    }
  },
  "name": "Nylas Notetaker"
}

Response

Success. Returns information about Notetaker bot.

request_idstring

The request ID.

Example response

{
  "request_id": "5fa64c92-e840-4357-86b9-2aa364d35b88"
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.