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

# Zendesk Support

Supports:
* ✅ Models
* ✅ Model sync destination
* ✅ 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>auth_method</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Authentication method<br/><br/>Accepted values: `apitoken` <a href="#auth-method-apitoken">↓</a>, `clientcredentials` <a href="#auth-method-clientcredentials">↓</a>, `oauth`</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>custom_api_limits</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Enforce custom API limits <a href="#custom-api-limits">↓</a></td>
<td><code>false</code></td>
</tr>
<tr>
<td><code>domain</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Zendesk subdomain</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>oauth_refresh_token</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">(required if `auth_method` is "oauth")</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>

<h4 id="auth-method">`auth_method`</h4>

<h5 id="auth-method-apitoken">When `auth_method` is `apitoken`</h5>

<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>api_token</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">API token</td>
<td><code>true</code></td>
</tr>
<tr>
<td><code>email</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Email</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>

<h5 id="auth-method-clientcredentials">When `auth_method` is `clientcredentials`</h5>

<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>client_secret</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Client secret</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


<h4 id="custom-api-limits">`custom_api_limits`</h4>

<h5 id="custom-api-limits-true">When `custom_api_limits` is `true`</h5>

<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>ratelimit_rpm</code></td>
<td><code>integer</code></td>
<td style="vertical-align: top;">Maximum requests per minute<br/><br/>Set a custom maximum request per minute limit.</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>



#### Example

```json
{
  "name": "Zendesk Support connection",
  "type": "zendesk_support",
  "configuration": {
    "api_token": "secret-token",
    "auth_method": "apitoken",
    "custom_api_limits": false,
    "domain": "polytomic.zendesk.com",
    "email": "user@example.com",
    "oauth_refresh_token": "dasfdasz62px8lqeoakuea2ccl4rxm13i6tbyorxhu1i20kc8ruvksmzxq"
  }
}
```

## Model Sync
### Source
#### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>object</code></td>
<td><code>string</code></td>
<td style="vertical-align: top;">Object</td>
<td><code>true</code></td>
</tr>
</tbody>
</table>


#### Example
```json
{
  ...
  "configuration": {
    "object": "tickets"
  }
}
```

### Target
Zendesk Support connections may be used as the destination in a model sync.
#### All targets

##### Configuration
<table>
<thead>
<tr>
<th>Name</th><th>Type</th><th>Description</th><th>Required</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>replace_relationships</code></td>
<td><code>boolean</code></td>
<td style="vertical-align: top;">Replace existing relationships</td>
<td><code>false</code></td>
</tr>
</tbody>
</table>


##### Example
```json
{
  ...
  "target": {
      "configuration": {
        "replace_relationships": false
    }
  }
}
```








## Bulk Sync
### Source
Zendesk Support connections may be used as a bulk sync source. No additional configuration options are required.