## Cancel `call.cancel(id) -> CallCancelResponse` **post** `/call/{id}/cancel` Cancel a running or scheduled call. ### Parameters - `id: String` ### Returns - `class CallCancelResponse` - `success: bool` ### Example ```ruby require "revox" revox = Revox::Client.new(api_key: "My API Key") response = revox.call.cancel("id") puts(response) ```