> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://apidocs.polytomic.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://apidocs.polytomic.com/_mcp/server.

# Apple Ads

Supports:
* ✅ Bulk sync source
* ✅ Connection Proxy




## Connection

### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>client_id</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Client ID</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>key_id</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Key ID</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>org_id</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Organization</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>team_id</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Team ID</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example

```json
{
  "name": "Apple Ads connection",
  "type": "apple_ads",
  "configuration": {
    "client_id": "",
    "key_id": "",
    "org_id": "",
    "team_id": ""
  }
}
```

### Read-only properties
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>public_key</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Public key</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>




## Bulk Sync
### Source
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>reporting_lookback</code></td>
<td><code>integer</code></td>
<td style="vertical-align: top;">Lookback period for reports</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "source_configuration": {
    "reporting_lookback": 0
  }
}
```