postv2callstranscript
Download call transcripts from gong-mcp by specifying filters like date range, call IDs, user IDs, or participant emails.
Instructions
Download transcripts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
requestBody | Yes | The JSON request body. |
Input Schema (JSON Schema)
{
"properties": {
"requestBody": {
"description": "The JSON request body.",
"properties": {
"cursor": {
"type": "string"
},
"filter": {
"properties": {
"callIds": {
"items": {
"type": "string"
},
"type": "array"
},
"fromDateTime": {
"format": "date-time",
"type": "string"
},
"participantsEmails": {
"items": {
"format": "email",
"type": "string"
},
"type": "array"
},
"primaryUserIds": {
"items": {
"type": "string"
},
"type": "array"
},
"toDateTime": {
"format": "date-time",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"filter"
],
"type": "object"
}
},
"required": [
"requestBody"
],
"type": "object"
}