freshdesk_get_ticket

Pack: freshdesk · Endpoint: https://gateway.pipeworx.io/freshdesk/mcp

No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/freshdesk_get_ticket for the schema, then POST the same URL with its arguments for the data.

Get full ticket details by ID including subject, status, priority, description, conversations, attachments, and resolution notes.

Parameters

NameTypeRequiredDescription
_apiKeystringyesFreshdesk API key
_domainstringyesFreshdesk subdomain
idnumberyesTicket ID

Example call

Arguments

{
  "_apiKey": "your-freshdesk-api-key",
  "_domain": "mycompany",
  "id": 1234
}

curl

curl -X POST https://gateway.pipeworx.io/freshdesk/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"freshdesk_get_ticket","arguments":{"_apiKey":"your-freshdesk-api-key","_domain":"mycompany","id":1234}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('freshdesk_get_ticket', {
  "_apiKey": "your-freshdesk-api-key",
  "_domain": "mycompany",
  "id": 1234
});

Response shape

FieldTypeDescription
idnumberTicket ID
subjectstringTicket subject
statusnumberTicket status code
prioritynumberTicket priority level
descriptionstringTicket description
requester_idnumberRequester contact ID
created_atstringISO timestamp
updated_atstringISO timestamp
conversationsarrayArray of conversation objects
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Ticket ID"
    },
    "subject": {
      "type": "string",
      "description": "Ticket subject"
    },
    "status": {
      "type": "number",
      "description": "Ticket status code"
    },
    "priority": {
      "type": "number",
      "description": "Ticket priority level"
    },
    "description": {
      "type": "string",
      "description": "Ticket description"
    },
    "requester_id": {
      "type": "number",
      "description": "Requester contact ID"
    },
    "created_at": {
      "type": "string",
      "description": "ISO timestamp"
    },
    "updated_at": {
      "type": "string",
      "description": "ISO timestamp"
    },
    "conversations": {
      "type": "array",
      "description": "Array of conversation objects",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Conversation ID"
          },
          "body": {
            "type": "string",
            "description": "Conversation message body"
          },
          "created_at": {
            "type": "string",
            "description": "ISO timestamp"
          }
        }
      }
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "freshdesk": {
      "url": "https://gateway.pipeworx.io/freshdesk/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build September 22, 2026