## Resume `client.campaigns.resume(stringid, RequestOptionsoptions?): CampaignResumeResponse` **post** `/campaigns/{id}/resume` Resume a paused campaign. Held calls continue from where they left off; calls whose scheduled time passed during the pause are placed at the next available calling window. ### Parameters - `id: string` ### Returns - `CampaignResumeResponse` - `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.campaigns.resume('id'); console.log(response.success); ```