MCP Tool: update_ticket_priority

Updates the priority of a ticket in the Thena platform. Useful for workflow automation, ticket management, and support operations.

Example Prompt

Set the priority of ticket CT4NVX0K10YJQ3X0185THN9R6H9M3 to "High"

Input Parameters

NameTypeRequiredDescription
idstringYesThe ID of the ticket to update
priorityIdstringNoThe ID of the priority to set
priorityNamestringNoThe name of the priority to set

Response Fields

FieldTypeDescription
dataobjectThe updated ticket object
statusbooleanWhether the update succeeded
messagestringStatus message
timestampstringTime the response was generated (ISO8601)

Sample Response

The response includes the updated ticket object and metadata about the operation.
{
  "data": {
    "id": "CT4NVX0K10YJQ3X0185THN9R6H9M3",
    "ticketId": 2,
    "title": "Sample Ticket: Database Connection Timeout",
    "description": "Customer is experiencing intermittent database connection timeouts when running reports. The issue occurs approximately 3-4 times per day and is affecting their ability to generate monthly analytics. Error message shows 'Connection timeout after 30 seconds'. This started after the recent server maintenance window.",
    "source": "api",
    "status": "Open",
    "priority": "Low",
    "teamId": "THEWWYV55X0JJL",
    "teamName": "team one",
    "teamIdentifier": "TON",
    "ticketIdentifier": "TON-2",
    "subTeamId": "THEWWYV55X0JJL",
    "subTeamName": "team one",
    "subTeamIdentifier": "TON",
    "isPrivate": false,
    "formId": "FORR9U22U7IIB",
    "requestorEmail": "admin@clientcompany.com",
    "submitterEmail": "admin@clientcompany.com",
    "customFieldValues": [],
    "customerContactId": "RS4NVX0K10ATNQZ5999JKW37R6MTP",
    "customerContactFirstName": "Admin",
    "customerContactLastName": "",
    "customerContactEmail": "admin@clientcompany.com",
    "statusId": "EA4VETZJ10ZKY6MKT04C3PM5DPG1C",
    "priorityId": "MA4VETZJ105PJDAZS2KBVVRPPQXDE",
    "sentimentId": "QA4VETZJ10FKVJQFS2QSBW5QWC3HD",
    "sentiment": "Neutral",
    "storyPoints": null,
    "aiGeneratedTitle": null,
    "aiGeneratedSummary": null,
    "createdAt": "2025-07-24T09:18:59.914Z",
    "updatedAt": "2025-07-24T09:42:57.723Z"
  },
  "status": true,
  "message": "Ticket updated successfully!",
  "timestamp": "2025-07-24T09:42:57.773Z"
}