## Pause `call.pause(id) -> CallPauseResponse` **post** `/call/{id}/pause` Pause a call's retry loop. The current in-progress attempt (if any) will finish, but no new attempts will be started until the call is resumed. ### Parameters - `id: String` ### Returns - `class CallPauseResponse` - `success: bool` ### Example ```ruby require "revox" revox = Revox::Client.new(api_key: "My API Key") response = revox.call.pause("id") puts(response) ```