phone_cancel_call
Terminate an ongoing phone call by specifying the call ID, enabling users to stop conversations efficiently within the Asterisk S2S MCP Server environment.
Instructions
Cancelar una llamada telefΓ³nica en curso
Input Schema
Name | Required | Description | Default |
---|---|---|---|
callId | Yes | ID de la llamada a cancelar |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"callId": {
"description": "ID de la llamada a cancelar",
"type": "string"
}
},
"required": [
"callId"
],
"type": "object"
}