update_ticket_conversation
Modify a specific conversation in Freshdesk tickets by updating its content. Streamline support operations by ensuring accurate and up-to-date customer interactions.
Instructions
Update a conversation for a ticket in Freshdesk.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
conversation_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"title": "Body",
"type": "string"
},
"conversation_id": {
"title": "Conversation Id",
"type": "integer"
}
},
"required": [
"conversation_id",
"body"
],
"title": "update_ticket_conversationArguments",
"type": "object"
}