search_ticket_attachments
Find and retrieve attachments associated with a specific support ticket by searching through ticket documents and files.
Instructions
Search for attachments on a specific ticket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageSize | No | Number of results to return (default: 10, max: 50) | |
ticketId | Yes | The ticket ID to search attachments for |
Input Schema (JSON Schema)
{
"properties": {
"pageSize": {
"description": "Number of results to return (default: 10, max: 50)",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"ticketId": {
"description": "The ticket ID to search attachments for",
"type": "number"
}
},
"required": [
"ticketId"
],
"type": "object"
}