update_call_transcript
Update call transcripts in the MCP JSON Database Server by modifying resolution status, follow-up requirements, and assigned user details. Ensure accurate and actionable meeting outcomes.
Instructions
Mevcut transkripti günceller
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assignedTo | No | Atanan kullanıcı ID'si | |
followUpRequired | No | Takip gerekli mi? | |
id | Yes | Transkript ID'si | |
resolution | No | Çözüm durumu | |
token | Yes | JWT token |
Input Schema (JSON Schema)
{
"properties": {
"assignedTo": {
"description": "Atanan kullanıcı ID'si",
"type": "number"
},
"followUpRequired": {
"description": "Takip gerekli mi?",
"type": "boolean"
},
"id": {
"description": "Transkript ID'si",
"type": "number"
},
"resolution": {
"description": "Çözüm durumu",
"type": "string"
},
"token": {
"description": "JWT token",
"type": "string"
}
},
"required": [
"token",
"id"
],
"type": "object"
}