zendesk_get_ticket_details
Retrieve detailed information for a specific Zendesk ticket, including comments, using its unique ID on the Zendesk MCP Server.
Instructions
Get detailed information about a Zendesk ticket including comments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticket_id | Yes | The ID of the ticket to retrieve details for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"ticket_id": {
"description": "The ID of the ticket to retrieve details for",
"type": "string"
}
},
"required": [
"ticket_id"
],
"type": "object"
}