create_ticket_reply
Automate ticket responses by generating replies in Freshdesk using AI integration. Input ticket ID and response content to streamline support operations efficiently.
Instructions
Create a reply to 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": "create_ticket_replyArguments",
"type": "object"
}