> ## 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.

# get_campaign_structure

> MCP tool reference for get_campaign_structure.

# `get_campaign_structure`

Get campaign structure including ad\_group\_ids.

**Expose:** `router` · **Read-only:** yes · **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.

## Parameters

| Parameter     | Type    | Required | Description                             |
| ------------- | ------- | -------- | --------------------------------------- |
| `ad_group_id` | string  | no       | Ad group id as string                   |
| `campaign_id` | string  | yes      | Campaign id as string                   |
| `customer_id` | string  | no       | Google Ads customer id as digits string |
| `include`     | array   | no       | Sections to include                     |
| `page`        | integer | no       |                                         |
| `page_size`   | integer | no       |                                         |

## Input schema

```json theme={null}
{
  "type": "object",
  "properties": {
    "campaign_id": {
      "type": "string",
      "description": "Campaign id as string"
    },
    "ad_group_id": {
      "type": "string",
      "description": "Ad group id as string"
    },
    "customer_id": {
      "type": "string",
      "description": "Google Ads customer id as digits string"
    },
    "include": {
      "type": "array",
      "description": "Sections to include",
      "items": {
        "type": "string"
      }
    },
    "page": {
      "type": "integer"
    },
    "page_size": {
      "type": "integer"
    }
  },
  "required": [
    "campaign_id"
  ],
  "additionalProperties": true
}
```

## Related

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