get_company_note
Retrieve specific company notes from Autotask PSA using company ID and note ID to access client documentation and records.
Instructions
Get a specific company note by company ID and note ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
companyId | Yes | The company ID | |
noteId | Yes | The note ID to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"companyId": {
"description": "The company ID",
"type": "number"
},
"noteId": {
"description": "The note ID to retrieve",
"type": "number"
}
},
"required": [
"companyId",
"noteId"
],
"type": "object"
}