get_call_analytics
Retrieve call analytics and statistics by specifying a date and period using JWT token authentication within the MCP JSON Database Server.
Instructions
Çağrı analitikleri ve istatistikleri getirir
Input Schema
Name | Required | Description | Default |
---|---|---|---|
date | No | Analiz tarihi (YYYY-MM-DD) | |
period | No | Analiz periyodu (daily, weekly, monthly) | |
token | Yes | JWT token |
Input Schema (JSON Schema)
{
"properties": {
"date": {
"description": "Analiz tarihi (YYYY-MM-DD)",
"type": "string"
},
"period": {
"description": "Analiz periyodu (daily, weekly, monthly)",
"enum": [
"daily",
"weekly",
"monthly"
],
"type": "string"
},
"token": {
"description": "JWT token",
"type": "string"
}
},
"required": [
"token"
],
"type": "object"
}