search_ticket_notes
Search and retrieve notes associated with a specific Autotask ticket to track activity history and communication details.
Instructions
Search for notes on a specific ticket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageSize | No | Number of results to return (default: 25, max: 100) | |
ticketId | Yes | The ticket ID to search notes for |
Input Schema (JSON Schema)
{
"properties": {
"pageSize": {
"description": "Number of results to return (default: 25, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"ticketId": {
"description": "The ticket ID to search notes for",
"type": "number"
}
},
"required": [
"ticketId"
],
"type": "object"
}