create_note
Generate and store notes with a title and content using an automation tool designed for streamlined note creation on an enterprise-grade platform.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content | Yes | Note content | |
| title | Yes | Note title |
Input Schema (JSON Schema)
{
"description": "Create a new note",
"name": "create_note",
"properties": {
"content": {
"description": "Note content",
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}