get_post_meeting_brief
Early AccessThis tool is in Early Access and is not enabled for all tenants yet. Contact your Customer Success Manager to request access.
Name: get_post_meeting_brief
Description: Retrieves the AI-generated post-meeting brief for a specific meeting, including a suggested follow-up email (subject and body) and recommended content to share with attendees along with the reasons each item is recommended. This tool provides ready-to-use follow-up materials that help meeting participants act on what was discussed. Do NOT use when: the user wants the meeting summary, action items, objections, or discovery questions — use get_post_meeting_overview instead. Related tools: get_post_meeting_overview covers meeting summary/action items/objections; this tool returns only the follow-up email draft and recommended content.
Schema
{
"type": "object",
"properties": {
"meetingId": {
"type": "string",
"format": "uuid",
"description": "The globally unique identifier (UUID v4) of the meeting for which to retrieve the post-meeting brief. This ID is assigned when a meeting is created and remains stable throughout its lifecycle."
}
},
"required": [
"meetingId"
],
"additionalProperties": false
}{
"type": "object",
"properties": {
"email": {
"type": "object",
"properties": {
"subject": {
"type": "string",
"description": "AI-generated subject line for the suggested follow-up email."
},
"body": {
"type": "string",
"description": "AI-generated body text for the suggested follow-up email."
}
},
"required": [
"subject",
"body"
],
"description": "Suggested follow-up email drafted from the meeting context."
},
"recommendation": {
"type": "object",
"properties": {
"contents": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Content identifier."
},
"versionId": {
"type": "string",
"description": "Content version identifier."
},
"repository": {
"type": "string",
"description": "Repository containing the content (e.g. \"doccenter\", \"workspace\")."
},
"type": {
"type": "string",
"description": "Type of content (e.g. \"file\")."
},
"name": {
"type": "string",
"description": "Name of the content."
},
"quickAccessPath": {
"type": [
"string",
"null"
],
"description": "Quick access path for the content, when available."
},
"contentProfileId": {
"type": "string",
"description": "DocCenter content profile identifier. Only present for repository \"doccenter\"."
},
"contentProfilePath": {
"type": "array",
"items": {
"type": "string"
},
"description": "DocCenter content profile path segments. Only present for repository \"doccenter\"."
},
"libraryContent": {
"type": "object",
"properties": {
"teamsiteId": {
"type": "string",
"description": "Teamsite identifier of the underlying library content."
},
"id": {
"type": "string",
"description": "Library content identifier."
},
"versionId": {
"type": "string",
"description": "Library content version identifier."
}
},
"description": "Underlying library content reference. Only present for repository \"doccenter\"."
},
"format": {
"type": "string",
"description": "File or content format of the recommended item (e.g. pdf, pptx), when available."
},
"contentUrl": {
"type": "string",
"description": "URL where the recommended content can be accessed, when available."
},
"contentDuration": {
"type": "string",
"description": "Duration of the content for time-based media, formatted as a time span (hh:mm:ss), when available."
}
},
"required": [
"id",
"repository",
"name"
]
},
"description": "List of recommended content items to share as meeting follow-up."
},
"contentIdRecommendedReasons": {
"type": "object",
"additionalProperties": {
"type": "string"
},
"description": "Map of content unique identifier to the AI-generated reason that content is recommended."
}
},
"description": "Recommended content to share as follow-up, with the reasons behind each recommendation."
}
},
"description": "Post-meeting brief containing a suggested follow-up email and recommended content."
}Updated 2 days ago