get_summary_tool
Fetch markdown summaries for recordings using synchronous return or asynchronous POST callbacks to destination URLs.
Instructions
Fetch the markdown summary for a specific recording. Supports synchronous return or asynchronous POST when destination_url is provided.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_url | No | Optional async callback URL | |
recording_id | Yes | The recording identifier |
Input Schema (JSON Schema)
{
"properties": {
"destination_url": {
"default": null,
"description": "Optional async callback URL",
"type": "string"
},
"recording_id": {
"description": "The recording identifier",
"type": "integer"
}
},
"required": [
"recording_id"
],
"type": "object"
}