> 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
| Name | Type | Description | Required |
auth_method |
string |
Authentication method
Accepted values: `apitoken` ↓, `clientcredentials` ↓, `oauth` |
true |
custom_api_limits |
boolean |
Enforce custom API limits ↓ |
false |
domain |
string |
Zendesk subdomain |
true |
oauth_refresh_token |
string |
(required if `auth_method` is "oauth") |
false |
`auth_method`
When `auth_method` is `apitoken`
| Name | Type | Description | Required |
api_token |
string |
API token |
true |
email |
string |
Email |
true |
When `auth_method` is `clientcredentials`
| Name | Type | Description | Required |
client_id |
string |
Client ID |
true |
client_secret |
string |
Client secret |
true |
`custom_api_limits`
When `custom_api_limits` is `true`
| Name | Type | Description | Required |
ratelimit_rpm |
integer |
Maximum requests per minute
Set a custom maximum request per minute limit. |
true |
#### 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
| Name | Type | Description | Required |
object |
string |
Object |
true |
#### Example
```json
{
...
"configuration": {
"object": "tickets"
}
}
```
### Target
Zendesk Support connections may be used as the destination in a model sync.
#### All targets
##### Configuration
| Name | Type | Description | Required |
replace_relationships |
boolean |
Replace existing relationships |
false |
##### 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.