getMeetingInfo
Retrieve meeting details such as transcripts and recordings by providing a session ID, enabling AI agents to generate summaries and insights for efficient meeting analysis.
Instructions
Get information about a meeting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
sessionId | Yes | The session ID to get information for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"sessionId": {
"description": "The session ID to get information for",
"type": "string"
}
},
"required": [
"sessionId"
],
"type": "object"
}