update_call_transcript
Updates existing call transcripts by modifying resolution status, follow-up requirements, and assigned personnel in the JSON Database Server.
Instructions
Mevcut transkripti günceller
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| token | Yes | JWT token | |
| id | Yes | Transkript ID'si | |
| resolution | No | Çözüm durumu | |
| followUpRequired | No | Takip gerekli mi? | |
| assignedTo | No | Atanan kullanıcı ID'si |
Implementation Reference
- src/index.js:191-205 (registration)Registration of the 'update_call_transcript' tool in the ListToolsRequestSchema handler, including its input schema definition. Note: No corresponding handler implementation (case statement) found in the CallToolRequestSchema switch.{ name: 'update_call_transcript', description: 'Mevcut transkripti günceller', inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'JWT token' }, id: { type: 'number', description: 'Transkript ID\'si' }, resolution: { type: 'string', description: 'Çözüm durumu' }, followUpRequired: { type: 'boolean', description: 'Takip gerekli mi?' }, assignedTo: { type: 'number', description: 'Atanan kullanıcı ID\'si' } }, required: ['token', 'id'] } },
- src/index.js:194-204 (schema)Input schema defining the parameters for the update_call_transcript tool: token (required), id (required), resolution, followUpRequired, assignedTo.inputSchema: { type: 'object', properties: { token: { type: 'string', description: 'JWT token' }, id: { type: 'number', description: 'Transkript ID\'si' }, resolution: { type: 'string', description: 'Çözüm durumu' }, followUpRequired: { type: 'boolean', description: 'Takip gerekli mi?' }, assignedTo: { type: 'number', description: 'Atanan kullanıcı ID\'si' } }, required: ['token', 'id'] }
- src/permissions.js:27-27 (helper)Permission constant TRANSCRIPT_UPDATE likely intended for use in the update_call_transcript handler for authorization checks.TRANSCRIPT_UPDATE: 'transcript:update',