search_company_notes
Find and retrieve company notes by entering the company ID to access relevant documentation and records stored in the Autotask system.
Instructions
Search for notes on a specific company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | The company ID to search notes for | |
pageSize | No | Number of results to return (default: 25, max: 100) |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "The company ID to search notes for",
"type": "number"
},
"pageSize": {
"description": "Number of results to return (default: 25, max: 100)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"companyId"
],
"type": "object"
}