phone_get_status
Retrieve the current status of a phone call by providing the call ID using Asterisk S2S MCP Server's functionality for automated conversational calls.
Instructions
Obtener el estado actual de una llamada telefΓ³nica
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callId | Yes | ID de la llamada |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"callId": {
"description": "ID de la llamada",
"type": "string"
}
},
"required": [
"callId"
],
"type": "object"
}