get_ticket_note
Retrieve specific ticket notes from Autotask PSA by providing ticket ID and note ID to access detailed service record information.
Instructions
Get a specific ticket note by ticket ID and note ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | The note ID to retrieve | |
ticketId | Yes | The ticket ID |
Input Schema (JSON Schema)
{
"properties": {
"noteId": {
"description": "The note ID to retrieve",
"type": "number"
},
"ticketId": {
"description": "The ticket ID",
"type": "number"
}
},
"required": [
"ticketId",
"noteId"
],
"type": "object"
}