update_ticket_summary
Modify the summary of a Freshdesk ticket by specifying the ticket ID and updated body. Automates ticket management for streamlined customer support operations.
Instructions
Update the summary of a ticket in Freshdesk.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
ticket_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"title": "Body",
"type": "string"
},
"ticket_id": {
"title": "Ticket Id",
"type": "integer"
}
},
"required": [
"ticket_id",
"body"
],
"title": "update_ticket_summaryArguments",
"type": "object"
}