create-note
Create and attach notes to records in Attio CRM for companies, people, deals, tasks, and other resource types to document important information and updates.
Instructions
Create a note for any record type (companies, people, deals)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the note | |
record_id | Yes | ID of the record to attach the note to | |
resource_type | Yes | Target resource type | |
title | Yes | Title of the note |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the note",
"type": "string"
},
"record_id": {
"description": "ID of the record to attach the note to",
"type": "string"
},
"resource_type": {
"description": "Target resource type",
"enum": [
"companies",
"people",
"lists",
"records",
"tasks",
"deals",
"notes"
],
"type": "string"
},
"title": {
"description": "Title of the note",
"type": "string"
}
},
"required": [
"resource_type",
"record_id",
"title",
"content"
],
"type": "object"
}