airbyte-agent-zendesk-support 0.18.47__tar.gz → 0.18.58__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- airbyte_agent_zendesk_support-0.18.58/AUTH.md +127 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/CHANGELOG.md +55 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/PKG-INFO +35 -22
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/README.md +34 -21
- airbyte_agent_zendesk_support-0.18.58/REFERENCE.md +3750 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/__init__.py +130 -2
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_strategies.py +55 -4
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/connector_model_loader.py +29 -8
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/local_executor.py +152 -22
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http_client.py +13 -6
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/logger.py +10 -1
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/types.py +1 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/base.py +7 -2
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/security.py +14 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/types.py +9 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/validation.py +12 -6
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/connector.py +920 -1
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/connector_model.py +1 -1
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/models.py +606 -0
- airbyte_agent_zendesk_support-0.18.58/airbyte_agent_zendesk_support/types.py +3932 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/pyproject.toml +1 -1
- airbyte_agent_zendesk_support-0.18.47/REFERENCE.md +0 -2693
- airbyte_agent_zendesk_support-0.18.47/airbyte_agent_zendesk_support/types.py +0 -217
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/.gitignore +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/auth_template.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/cloud_utils/client.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/constants.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/exceptions.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/hosted_executor.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/executor/models.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/extensions.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/adapters/httpx_adapter.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/config.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/exceptions.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/protocols.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/http/response.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/introspection.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/logging/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/config.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/models.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/redactor.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/observability/session.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/instrumentation.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/performance/metrics.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/components.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/connector.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/extensions.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/schema/operations.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/secrets.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/__init__.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/config.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/events.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/telemetry/tracker.py +0 -0
- {airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/airbyte_agent_zendesk_support/_vendored/connector_sdk/utils.py +0 -0
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# Zendesk-Support authentication and configuration
|
|
2
|
+
|
|
3
|
+
This page documents the authentication and configuration options for the Zendesk-Support agent connector.
|
|
4
|
+
|
|
5
|
+
## Authentication
|
|
6
|
+
|
|
7
|
+
### Open source execution
|
|
8
|
+
|
|
9
|
+
In open source mode, you provide API credentials directly to the connector.
|
|
10
|
+
|
|
11
|
+
#### OAuth
|
|
12
|
+
|
|
13
|
+
| Field Name | Type | Required | Description |
|
|
14
|
+
|------------|------|----------|-------------|
|
|
15
|
+
| `access_token` | `str` | Yes | OAuth 2.0 access token |
|
|
16
|
+
| `refresh_token` | `str` | No | OAuth 2.0 refresh token (optional) |
|
|
17
|
+
|
|
18
|
+
```python
|
|
19
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
20
|
+
from airbyte_agent_zendesk-support.models import ZendeskSupportOauth20AuthConfig
|
|
21
|
+
|
|
22
|
+
connector = ZendeskSupportConnector(
|
|
23
|
+
auth_config=ZendeskSupportOauth20AuthConfig(
|
|
24
|
+
access_token="<OAuth 2.0 access token>",
|
|
25
|
+
refresh_token="<OAuth 2.0 refresh token (optional)>"
|
|
26
|
+
)
|
|
27
|
+
)
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
#### Token
|
|
31
|
+
|
|
32
|
+
| Field Name | Type | Required | Description |
|
|
33
|
+
|------------|------|----------|-------------|
|
|
34
|
+
| `email` | `str` | Yes | Your Zendesk account email address |
|
|
35
|
+
| `api_token` | `str` | Yes | Your Zendesk API token from Admin Center |
|
|
36
|
+
|
|
37
|
+
```python
|
|
38
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
39
|
+
from airbyte_agent_zendesk-support.models import ZendeskSupportApiTokenAuthConfig
|
|
40
|
+
|
|
41
|
+
connector = ZendeskSupportConnector(
|
|
42
|
+
auth_config=ZendeskSupportApiTokenAuthConfig(
|
|
43
|
+
email="<Your Zendesk account email address>",
|
|
44
|
+
api_token="<Your Zendesk API token from Admin Center>"
|
|
45
|
+
)
|
|
46
|
+
)
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
### Hosted execution
|
|
50
|
+
|
|
51
|
+
In hosted mode, you first create a connector via the Airbyte API (providing your OAuth or Token credentials), then execute operations using either the Python SDK or API. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
|
|
52
|
+
|
|
53
|
+
#### OAuth
|
|
54
|
+
|
|
55
|
+
Create a connector with OAuth credentials:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
curl -X POST 'https://api.airbyte.ai/v1/integrations/connectors' \
|
|
59
|
+
-H 'Authorization: Bearer <SCOPED_TOKEN>' \
|
|
60
|
+
-H 'Content-Type: application/json' \
|
|
61
|
+
-d '{
|
|
62
|
+
"external_user_id": "<EXTERNAL_USER_ID>",
|
|
63
|
+
"connector_type": "Zendesk-Support",
|
|
64
|
+
"name": "My Zendesk-Support Connector",
|
|
65
|
+
"credentials": {
|
|
66
|
+
"access_token": "<OAuth 2.0 access token>",
|
|
67
|
+
"refresh_token": "<OAuth 2.0 refresh token (optional)>"
|
|
68
|
+
}
|
|
69
|
+
}'
|
|
70
|
+
```
|
|
71
|
+
|
|
72
|
+
#### Token
|
|
73
|
+
|
|
74
|
+
Create a connector with Token credentials:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
77
|
+
curl -X POST 'https://api.airbyte.ai/v1/integrations/connectors' \
|
|
78
|
+
-H 'Authorization: Bearer <SCOPED_TOKEN>' \
|
|
79
|
+
-H 'Content-Type: application/json' \
|
|
80
|
+
-d '{
|
|
81
|
+
"external_user_id": "<EXTERNAL_USER_ID>",
|
|
82
|
+
"connector_type": "Zendesk-Support",
|
|
83
|
+
"credentials": {
|
|
84
|
+
"email": "<Your Zendesk account email address>",
|
|
85
|
+
"api_token": "<Your Zendesk API token from Admin Center>"
|
|
86
|
+
}
|
|
87
|
+
}'
|
|
88
|
+
```
|
|
89
|
+
|
|
90
|
+
#### Execution
|
|
91
|
+
|
|
92
|
+
After creating the connector, execute operations using either the Python SDK or API.
|
|
93
|
+
|
|
94
|
+
**Python SDK**
|
|
95
|
+
|
|
96
|
+
```python
|
|
97
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
98
|
+
|
|
99
|
+
connector = ZendeskSupportConnector(
|
|
100
|
+
external_user_id="<your-scoped-token>",
|
|
101
|
+
airbyte_client_id="<your-client-id>",
|
|
102
|
+
airbyte_client_secret="<your-client-secret>"
|
|
103
|
+
)
|
|
104
|
+
|
|
105
|
+
@agent.tool_plain # assumes you're using Pydantic AI
|
|
106
|
+
@ZendeskSupportConnector.describe
|
|
107
|
+
async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
|
|
108
|
+
return await connector.execute(entity, action, params or {})
|
|
109
|
+
```
|
|
110
|
+
|
|
111
|
+
**API**
|
|
112
|
+
|
|
113
|
+
```bash
|
|
114
|
+
curl -X POST 'https://api.airbyte.ai/api/v1/connectors/sources/<connector_id>/execute' \
|
|
115
|
+
-H 'Authorization: Bearer <SCOPED_TOKEN>' \
|
|
116
|
+
-H 'Content-Type: application/json' \
|
|
117
|
+
-d '{"entity": "<entity>", "action": "<action>", "params": {}}'
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
## Configuration
|
|
122
|
+
|
|
123
|
+
The Zendesk-Support connector requires the following configuration variables. These variables are used to construct the base API URL. Pass them via the `config` parameter when initializing the connector.
|
|
124
|
+
|
|
125
|
+
| Variable | Type | Required | Default | Description |
|
|
126
|
+
|----------|------|----------|---------|-------------|
|
|
127
|
+
| `subdomain` | `string` | Yes | your-subdomain | Your Zendesk subdomain |
|
{airbyte_agent_zendesk_support-0.18.47 → airbyte_agent_zendesk_support-0.18.58}/CHANGELOG.md
RENAMED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# Zendesk Support changelog
|
|
2
2
|
|
|
3
|
+
## [0.18.58] - 2026-01-23
|
|
4
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
5
|
+
- Source commit: f17cdd8c
|
|
6
|
+
- SDK version: 0.1.0
|
|
7
|
+
|
|
8
|
+
## [0.18.57] - 2026-01-22
|
|
9
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
10
|
+
- Source commit: 49e6dfe9
|
|
11
|
+
- SDK version: 0.1.0
|
|
12
|
+
|
|
13
|
+
## [0.18.56] - 2026-01-22
|
|
14
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
15
|
+
- Source commit: b27328e2
|
|
16
|
+
- SDK version: 0.1.0
|
|
17
|
+
|
|
18
|
+
## [0.18.55] - 2026-01-22
|
|
19
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
20
|
+
- Source commit: 1da193dd
|
|
21
|
+
- SDK version: 0.1.0
|
|
22
|
+
|
|
23
|
+
## [0.18.54] - 2026-01-22
|
|
24
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
25
|
+
- Source commit: c713ec48
|
|
26
|
+
- SDK version: 0.1.0
|
|
27
|
+
|
|
28
|
+
## [0.18.53] - 2026-01-21
|
|
29
|
+
- Updated connector definition (YAML version 0.1.7)
|
|
30
|
+
- Source commit: 6fbe49cd
|
|
31
|
+
- SDK version: 0.1.0
|
|
32
|
+
|
|
33
|
+
## [0.18.52] - 2026-01-21
|
|
34
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
35
|
+
- Source commit: c7dab975
|
|
36
|
+
- SDK version: 0.1.0
|
|
37
|
+
|
|
38
|
+
## [0.18.51] - 2026-01-19
|
|
39
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
40
|
+
- Source commit: 529cebb7
|
|
41
|
+
- SDK version: 0.1.0
|
|
42
|
+
|
|
43
|
+
## [0.18.50] - 2026-01-16
|
|
44
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
45
|
+
- Source commit: a50c8f71
|
|
46
|
+
- SDK version: 0.1.0
|
|
47
|
+
|
|
48
|
+
## [0.18.49] - 2026-01-16
|
|
49
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
50
|
+
- Source commit: 49673b7b
|
|
51
|
+
- SDK version: 0.1.0
|
|
52
|
+
|
|
53
|
+
## [0.18.48] - 2026-01-16
|
|
54
|
+
- Updated connector definition (YAML version 0.1.6)
|
|
55
|
+
- Source commit: 05c940e3
|
|
56
|
+
- SDK version: 0.1.0
|
|
57
|
+
|
|
3
58
|
## [0.18.47] - 2026-01-16
|
|
4
59
|
- Updated connector definition (YAML version 0.1.5)
|
|
5
60
|
- Source commit: ca5acdda
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: airbyte-agent-zendesk-support
|
|
3
|
-
Version: 0.18.
|
|
3
|
+
Version: 0.18.58
|
|
4
4
|
Summary: Airbyte Zendesk-Support Connector for AI platforms
|
|
5
5
|
Project-URL: Homepage, https://github.com/airbytehq/airbyte-agent-connectors
|
|
6
6
|
Project-URL: Documentation, https://docs.airbyte.com/ai-agents/
|
|
@@ -71,38 +71,49 @@ uv pip install airbyte-agent-zendesk-support
|
|
|
71
71
|
|
|
72
72
|
## Usage
|
|
73
73
|
|
|
74
|
-
|
|
74
|
+
Connectors can run in open source or hosted mode.
|
|
75
75
|
|
|
76
|
-
###
|
|
76
|
+
### Open source
|
|
77
|
+
|
|
78
|
+
In open source mode, you provide API credentials directly to the connector.
|
|
77
79
|
|
|
78
80
|
```python
|
|
79
|
-
from
|
|
80
|
-
from airbyte_agent_zendesk_support.models import
|
|
81
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
82
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
81
83
|
|
|
82
84
|
connector = ZendeskSupportConnector(
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
85
|
+
auth_config=ZendeskSupportApiTokenAuthConfig(
|
|
86
|
+
email="<Your Zendesk account email address>",
|
|
87
|
+
api_token="<Your Zendesk API token from Admin Center>"
|
|
88
|
+
)
|
|
87
89
|
)
|
|
88
|
-
|
|
90
|
+
|
|
91
|
+
@agent.tool_plain # assumes you're using Pydantic AI
|
|
92
|
+
@ZendeskSupportConnector.describe
|
|
93
|
+
async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
|
|
94
|
+
return await connector.execute(entity, action, params or {})
|
|
89
95
|
```
|
|
90
96
|
|
|
91
|
-
###
|
|
97
|
+
### Hosted
|
|
98
|
+
|
|
99
|
+
In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
|
|
100
|
+
|
|
101
|
+
This example assumes you've already authenticated your connector with Airbyte. See [Authentication](AUTH.md) to learn more about authenticating. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
|
|
92
102
|
|
|
93
103
|
```python
|
|
94
|
-
from
|
|
95
|
-
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
104
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
96
105
|
|
|
97
106
|
connector = ZendeskSupportConnector(
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
)
|
|
107
|
+
external_user_id="<your-scoped-token>",
|
|
108
|
+
airbyte_client_id="<your-client-id>",
|
|
109
|
+
airbyte_client_secret="<your-client-secret>"
|
|
102
110
|
)
|
|
103
|
-
result = await connector.tickets.list()
|
|
104
|
-
```
|
|
105
111
|
|
|
112
|
+
@agent.tool_plain # assumes you're using Pydantic AI
|
|
113
|
+
@ZendeskSupportConnector.describe
|
|
114
|
+
async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
|
|
115
|
+
return await connector.execute(entity, action, params or {})
|
|
116
|
+
```
|
|
106
117
|
|
|
107
118
|
## Full documentation
|
|
108
119
|
|
|
@@ -134,12 +145,14 @@ This connector supports the following entities and actions.
|
|
|
134
145
|
| Article Attachments | [List](./REFERENCE.md#article-attachments-list), [Get](./REFERENCE.md#article-attachments-get), [Download](./REFERENCE.md#article-attachments-download) |
|
|
135
146
|
|
|
136
147
|
|
|
148
|
+
For all authentication options, see the connector's [authentication documentation](AUTH.md).
|
|
149
|
+
|
|
137
150
|
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
138
151
|
|
|
139
152
|
For the service's official API docs, see the [Zendesk-Support API reference](https://developer.zendesk.com/api-reference/ticketing/introduction/).
|
|
140
153
|
|
|
141
154
|
## Version information
|
|
142
155
|
|
|
143
|
-
- **Package version:** 0.18.
|
|
144
|
-
- **Connector version:** 0.1.
|
|
145
|
-
- **Generated with Connector SDK commit SHA:**
|
|
156
|
+
- **Package version:** 0.18.58
|
|
157
|
+
- **Connector version:** 0.1.7
|
|
158
|
+
- **Generated with Connector SDK commit SHA:** f17cdd8c92950751a75daff9c6bf74df05774ede
|
|
@@ -38,38 +38,49 @@ uv pip install airbyte-agent-zendesk-support
|
|
|
38
38
|
|
|
39
39
|
## Usage
|
|
40
40
|
|
|
41
|
-
|
|
41
|
+
Connectors can run in open source or hosted mode.
|
|
42
42
|
|
|
43
|
-
###
|
|
43
|
+
### Open source
|
|
44
|
+
|
|
45
|
+
In open source mode, you provide API credentials directly to the connector.
|
|
44
46
|
|
|
45
47
|
```python
|
|
46
|
-
from
|
|
47
|
-
from airbyte_agent_zendesk_support.models import
|
|
48
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
49
|
+
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
48
50
|
|
|
49
51
|
connector = ZendeskSupportConnector(
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
52
|
+
auth_config=ZendeskSupportApiTokenAuthConfig(
|
|
53
|
+
email="<Your Zendesk account email address>",
|
|
54
|
+
api_token="<Your Zendesk API token from Admin Center>"
|
|
55
|
+
)
|
|
54
56
|
)
|
|
55
|
-
|
|
57
|
+
|
|
58
|
+
@agent.tool_plain # assumes you're using Pydantic AI
|
|
59
|
+
@ZendeskSupportConnector.describe
|
|
60
|
+
async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
|
|
61
|
+
return await connector.execute(entity, action, params or {})
|
|
56
62
|
```
|
|
57
63
|
|
|
58
|
-
###
|
|
64
|
+
### Hosted
|
|
65
|
+
|
|
66
|
+
In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead.
|
|
67
|
+
|
|
68
|
+
This example assumes you've already authenticated your connector with Airbyte. See [Authentication](AUTH.md) to learn more about authenticating. If you need a step-by-step guide, see the [hosted execution tutorial](https://docs.airbyte.com/ai-agents/quickstarts/tutorial-hosted).
|
|
59
69
|
|
|
60
70
|
```python
|
|
61
|
-
from
|
|
62
|
-
from airbyte_agent_zendesk_support.models import ZendeskSupportApiTokenAuthConfig
|
|
71
|
+
from airbyte_agent_zendesk-support import ZendeskSupportConnector
|
|
63
72
|
|
|
64
73
|
connector = ZendeskSupportConnector(
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
)
|
|
74
|
+
external_user_id="<your-scoped-token>",
|
|
75
|
+
airbyte_client_id="<your-client-id>",
|
|
76
|
+
airbyte_client_secret="<your-client-secret>"
|
|
69
77
|
)
|
|
70
|
-
result = await connector.tickets.list()
|
|
71
|
-
```
|
|
72
78
|
|
|
79
|
+
@agent.tool_plain # assumes you're using Pydantic AI
|
|
80
|
+
@ZendeskSupportConnector.describe
|
|
81
|
+
async def zendesk-support_execute(entity: str, action: str, params: dict | None = None):
|
|
82
|
+
return await connector.execute(entity, action, params or {})
|
|
83
|
+
```
|
|
73
84
|
|
|
74
85
|
## Full documentation
|
|
75
86
|
|
|
@@ -101,12 +112,14 @@ This connector supports the following entities and actions.
|
|
|
101
112
|
| Article Attachments | [List](./REFERENCE.md#article-attachments-list), [Get](./REFERENCE.md#article-attachments-get), [Download](./REFERENCE.md#article-attachments-download) |
|
|
102
113
|
|
|
103
114
|
|
|
115
|
+
For all authentication options, see the connector's [authentication documentation](AUTH.md).
|
|
116
|
+
|
|
104
117
|
For detailed documentation on available actions and parameters, see this connector's [full reference documentation](./REFERENCE.md).
|
|
105
118
|
|
|
106
119
|
For the service's official API docs, see the [Zendesk-Support API reference](https://developer.zendesk.com/api-reference/ticketing/introduction/).
|
|
107
120
|
|
|
108
121
|
## Version information
|
|
109
122
|
|
|
110
|
-
- **Package version:** 0.18.
|
|
111
|
-
- **Connector version:** 0.1.
|
|
112
|
-
- **Generated with Connector SDK commit SHA:**
|
|
123
|
+
- **Package version:** 0.18.58
|
|
124
|
+
- **Connector version:** 0.1.7
|
|
125
|
+
- **Generated with Connector SDK commit SHA:** f17cdd8c92950751a75daff9c6bf74df05774ede
|