> ## Documentation Index
> Fetch the complete documentation index at: https://docs.adcue.app/llms.txt
> Use this file to discover all available pages before exploring further.

# resume_campaign

> MCP tool reference for resume_campaign.

# `resume_campaign`

Resume (enable) a campaign after user confirmation.

**Expose:** `router` · **Read-only:** no · **Destructive:** no · **Advanced:** no

Call via the `google_ads` router with `action=execute` and this `tool_name`.

Runtime truth is the live MCP surface (`list_tools` / `get_tool_schema`). This page is generated from the committed registry export.

## Safety notes

* Creates and many writes land **PAUSED** where the product applies that rule. Prefer human approval before enabling spend.

## Parameters

| Parameter     | Type   | Required | Description                             |
| ------------- | ------ | -------- | --------------------------------------- |
| `campaign_id` | string | yes      | Campaign id as string                   |
| `customer_id` | string | no       | Google Ads customer id as digits string |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "campaign_id": {
      "type": "string",
      "description": "Campaign id as string"
    },
    "customer_id": {
      "type": "string",
      "description": "Google Ads customer id as digits string"
    }
  },
  "required": [
    "campaign_id"
  ],
  "additionalProperties": true
}
```

## Related

* [Tool catalog](/mcp/tools)
* [Safety model](/mcp/safety)
* [Tool Reference overview](/tool-reference/overview)
