search_project_notes
Find and retrieve notes associated with a specific project in Autotask to track project details, updates, and communications.
Instructions
Search for notes on a specific project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
pageSize | No | Number of results to return (default: 25, max: 100) | |
projectId | Yes | The project 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"
},
"projectId": {
"description": "The project ID to search notes for",
"type": "number"
}
},
"required": [
"projectId"
],
"type": "object"
}