## Pause `client.call.pause(stringid, RequestOptionsoptions?): 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 - `CallPauseResponse` - `success: boolean` ### Example ```typescript import Revox from '@revoxai/sdk'; const client = new Revox({ apiKey: process.env['REVOX_API_KEY'], // This is the default and can be omitted }); const response = await client.call.pause('id'); console.log(response.success); ```