# x_ads_update_campaign

> Rename a campaign or pause it (entity_status=PAUSED). A write tool that previews before it changes anything, one of 26 X Ads tools on the Get MCP Ads MCP…

[Documentation](https://www.getmcpads.com/docs) / [Sources](https://www.getmcpads.com/docs/sources) / [X Ads](https://www.getmcpads.com/docs/sources/x-ads)

Rename a campaign or pause it (entity_status=PAUSED). This tool can pause but CANNOT activate ; use activate_campaign to make a campaign eligible to spend. Budgets and schedule live on line items in ads-api v12: use update_line_item to change them. Preview by default. Ask the user to approve the exact account, target and parameters before confirm:true.

> **Warning** This tool changes the account. It is absent from the tool list on the Free plan, and it previews by default: without `confirm: true` it describes the change and applies nothing.

|  |  |
| --- | --- |
| Source | [X Ads](https://www.getmcpads.com/docs/sources/x-ads) |
| Kind | Write |
| Discovery | Reachable through `search_tools` and `run_tool` |
| Account parameter | `account_id` |
| Endpoint | https://mcp.getmcpads.com/x-ads/mcp |

## Parameters

| Name | Type | Required | Notes |
| --- | --- | --- | --- |
| `account_id` | string | Required | X Ads account ID selected in Sources. |
| `campaign_id` | string | Required | Campaign ID belonging to the selected X Ads account. |
| `entity_status` | string | Optional | Only PAUSED is accepted (pauses the campaign). Activation is a separate explicit action via activ... One of: `PAUSED`. |
| `funding_instrument_id` | string | Optional | Move the campaign to a different funding instrument (from list_funding_instruments; must have abl... |
| `name` | string | Optional | New campaign name (1-255 characters). |
| `purchase_order_number` | string | Optional | New booking reference / PO number carried onto invoices for invoice-billed accounts (max 50 chara... |
| `standard_delivery` | boolean | Optional | true paces spend evenly through the day; false spends as fast as possible (accelerated delivery). |
| `confirm` | boolean | Optional | False previews only; true applies this exact change after explicit human confirmation. Default: `false`. |

## Calling it

Through run_tool, since it is not announced

```json
{
  "name": "run_tool",
  "arguments": {
    "name": "x_ads_update_campaign",
    "args": {
      "account_id": "<string>",
      "campaign_id": "<string>"
    }
  }
}
```

- [X Ads metrics](https://www.getmcpads.com/docs/sources/x-ads/metrics): What you can ask for.
- [X Ads dimensions](https://www.getmcpads.com/docs/sources/x-ads/dimensions): How you can break it down.

---

This page as HTML: https://www.getmcpads.com/docs/sources/x-ads/tools/x_ads_update_campaign
Every page under /docs is available as Markdown: append `.md`, or send `Accept: text/markdown`.
