Skip to main content

Airbyte Freshdesk Connector for AI platforms

Project description

Freshdesk

The Freshdesk agent connector is a Python package that equips AI agents to interact with Freshdesk through strongly typed, well-documented tools. It's ready to use directly in your Python app, in an agent framework, or exposed through an MCP.

Connector for the Freshdesk customer support platform API (v2). Provides read access to helpdesk data including tickets, contacts, agents, groups, companies, roles, satisfaction ratings, surveys, time entries, and ticket fields. Freshdesk is a cloud-based customer support solution that enables companies to manage customer conversations across email, phone, chat, and social media.

Example questions

The Freshdesk connector is optimized to handle prompts like these.

  • List all open tickets in Freshdesk
  • Show me all agents in the support team
  • List all groups configured in Freshdesk
  • Get the details of ticket #26
  • Show me all companies in Freshdesk
  • List all roles defined in the helpdesk
  • Show me the ticket fields and their options
  • List time entries for tickets
  • What are the high priority tickets from last week?
  • Which tickets have breached their SLA due date?
  • Show me tickets assigned to agent {agent_name}
  • Find all tickets from company {company_name}
  • How many tickets were created this month by status?
  • What are the satisfaction ratings for resolved tickets?

Unsupported questions

The Freshdesk connector isn't currently able to handle prompts like these.

  • Create a new ticket in Freshdesk
  • Update the status of ticket #{ticket_id}
  • Delete a contact from Freshdesk
  • Assign a ticket to a different agent

Installation

uv pip install airbyte-agent-freshdesk

Usage

Connectors can run in open source or hosted mode.

Open source

In open source mode, you provide API credentials directly to the connector.

from airbyte_agent_freshdesk import FreshdeskConnector
from airbyte_agent_freshdesk.models import FreshdeskAuthConfig

connector = FreshdeskConnector(
    auth_config=FreshdeskAuthConfig(
        api_key="<Your Freshdesk API key (found in Profile Settings)>"
    )
)

@agent.tool_plain # assumes you're using Pydantic AI
@FreshdeskConnector.tool_utils
async def freshdesk_execute(entity: str, action: str, params: dict | None = None):
    return await connector.execute(entity, action, params or {})

Hosted

In hosted mode, API credentials are stored securely in Airbyte Cloud. You provide your Airbyte credentials instead. If your Airbyte client can access multiple organizations, also set organization_id.

This example assumes you've already authenticated your connector with Airbyte. See Authentication to learn more about authenticating. If you need a step-by-step guide, see the hosted execution tutorial.

from airbyte_agent_freshdesk import FreshdeskConnector, AirbyteAuthConfig

connector = FreshdeskConnector(
    auth_config=AirbyteAuthConfig(
        customer_name="<your_customer_name>",
        organization_id="<your_organization_id>",  # Optional for multi-org clients
        airbyte_client_id="<your-client-id>",
        airbyte_client_secret="<your-client-secret>"
    )
)

@agent.tool_plain # assumes you're using Pydantic AI
@FreshdeskConnector.tool_utils
async def freshdesk_execute(entity: str, action: str, params: dict | None = None):
    return await connector.execute(entity, action, params or {})

Full documentation

Entities and actions

This connector supports the following entities and actions. For more details, see this connector's full reference documentation.

Entity Actions
Tickets List, Get, Search
Contacts List, Get
Agents List, Get, Search
Groups List, Get, Search
Companies List, Get
Roles List, Get
Satisfaction Ratings List
Surveys List
Time Entries List
Ticket Fields List

Authentication

For all authentication options, see the connector's authentication documentation.

Freshdesk API docs

See the official Freshdesk API reference.

Version information

  • Package version: 0.1.5
  • Connector version: 1.0.1
  • Generated with Connector SDK commit SHA: 9072a725853114e466154114543292f4c8efe9f3
  • Changelog: View changelog

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

airbyte_agent_freshdesk-0.1.5.tar.gz (145.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

airbyte_agent_freshdesk-0.1.5-py3-none-any.whl (170.8 kB view details)

Uploaded Python 3

File details

Details for the file airbyte_agent_freshdesk-0.1.5.tar.gz.

File metadata

  • Download URL: airbyte_agent_freshdesk-0.1.5.tar.gz
  • Upload date:
  • Size: 145.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.13.12

File hashes

Hashes for airbyte_agent_freshdesk-0.1.5.tar.gz
Algorithm Hash digest
SHA256 69e0e5b841f0a83f625147e9d1fd44d85d764f83716d82eaa61975ca7e1a9c01
MD5 f537306b8cd7963b649ee0652e491141
BLAKE2b-256 6d8ffdea6f031bea5cc93a91423c3b3b65b5ba152d9968ab0f99d9554af0d5a6

See more details on using hashes here.

File details

Details for the file airbyte_agent_freshdesk-0.1.5-py3-none-any.whl.

File metadata

File hashes

Hashes for airbyte_agent_freshdesk-0.1.5-py3-none-any.whl
Algorithm Hash digest
SHA256 103a0c8bd1a0cca39938bfc869f6e81461744ab7b180bf3b621eaf2f171da416
MD5 ba1bccbeedf5368aa05ac9dc58b8b9c1
BLAKE2b-256 06223dfa9957ec7798411726a9cb7b70056e8db7dc1e49306b3f8055049158ae

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page