## Cancel `call.cancel(strid) -> CallCancelResponse` **post** `/call/{id}/cancel` Cancel a running or scheduled call. ### Parameters - `id: str` ### Returns - `class CallCancelResponse: …` - `success: bool` ### Example ```python import os from revox import Revox client = Revox( api_key=os.environ.get("REVOX_API_KEY"), # This is the default and can be omitted ) response = client.call.cancel( "id", ) print(response.success) ```