create_company_note
Add notes to company records in Autotask to document important information, updates, or actions for future reference and team collaboration.
Instructions
Create a new note for a company
Input Schema
Name | Required | Description | Default |
---|---|---|---|
actionType | No | Action type for the note | |
companyId | Yes | The company ID to add the note to | |
description | Yes | Note content | |
title | No | Note title |
Input Schema (JSON Schema)
{
"properties": {
"actionType": {
"description": "Action type for the note",
"type": "number"
},
"companyId": {
"description": "The company ID to add the note to",
"type": "number"
},
"description": {
"description": "Note content",
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
}
},
"required": [
"companyId",
"description"
],
"type": "object"
}