Get the transcript analysis of meeting
Name: get_the_transcript_analysis_of_meeting_by_meeting_id
Description: Get the post meeting overview, which include the summaries, the action items, content recommendations, objections, commercial topics and discovery questions.
Schema
{
"type": "object",
"properties": {
"meetingId": {
"type": "string",
"description": "The unique id of a meeting"
},
"offset": {
"type": "integer",
"description": "The offset that default is 0 for query results",
"default": 0
},
"limit": {
"type": "integer",
"description": "The limit that default is 10 for query results",
"default": 10
}
},
"required": [
"meetingId"
]
}
{
"type": "object",
"properties": {
"hasMore": {
"type": "boolean",
"description": "Indicates that if there has more results so that caller to decide for next request"
},
"totalCount": {
"type": "integer",
"description": "Indicates that the total count of results"
},
"items": {
"type": "array",
"description": "A list of meeting cues",
"items": {
"type": "object",
"properties": {
"recordingId": {
"type": "string",
"description": "The recording id of the meeting recoding"
},
"cues": {
"type": "array",
"description": "A set of cues data of the meeting recoding",
"items": {
"type": "object",
"properties": {
"start": {
"type": "string",
"description": "The start time of the cue"
},
"end": {
"type": "string",
"description": "The end time of the cue"
},
"speaker": {
"type": "string",
"description": "The speaker of the cue"
},
"externalSpeakerId": {
"type": "string",
"description": "The external speaker id of the cue"
},
"text": {
"type": "string",
"description": "The text of the cue"
},
"hasQuestion": {
"type": "boolean",
"description": "Indicate that if it is a question sentence or not against the text"
},
"topics": {
"type": "array",
"description": "A set of topics data of the text with the speaker",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the topic"
},
"keywords": {
"type": "array",
"description": "A set of keywords data against the topic",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the keyword"
},
"count": {
"type": "integer",
"description": "The count of the keyword"
},
"fuzzyMatchedKeywords": {
"type": "array",
"description": "A set of fuzzy matched keywords data against the keyword",
"items": {
"type": "object",
"properties": {}
}
}
}
}
}
}
}
}
}
}
}
}
}
}
},
"required": []
}
Updated 1 day ago