zendesk_get_ticket
Retrieve a specific Zendesk ticket by its ID using the Zendesk MCP Server, enabling efficient access to ticket details for streamlined support management.
Instructions
Get a Zendesk ticket by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ticket_id | Yes | The ID of the ticket to retrieve |
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",
"type": "string"
}
},
"required": [
"ticket_id"
],
"type": "object"
}