kibela_create_note
Create and manage notes in Kibela by specifying title, content, folders, and groups. Enable co-editing, draft mode, and assign authors for collaborative documentation.
Instructions
Create a new note in Kibela.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
authorId | No | ID of the author of the note. If not specified, the note will be created by the authenticated user. | |
coediting | No | required: Whether to enable co-editing for the note | |
content | Yes | required: Content of the note in markdown format | |
draft | No | Whether to create the note as a draft | |
folders | No | IDs of the folders to add the note to. | |
groupIds | No | required: IDs of the groups to create the note in. | |
title | Yes | required: Title of the note |
Input Schema (JSON Schema)
{
"properties": {
"authorId": {
"description": "ID of the author of the note. If not specified, the note will be created by the authenticated user.",
"type": "string"
},
"coediting": {
"description": "required: Whether to enable co-editing for the note",
"type": "boolean"
},
"content": {
"description": "required: Content of the note in markdown format",
"type": "string"
},
"draft": {
"description": "Whether to create the note as a draft",
"type": "boolean"
},
"folders": {
"description": "IDs of the folders to add the note to.",
"items": {
"type": "string"
},
"type": "array"
},
"groupIds": {
"description": "required: IDs of the groups to create the note in.",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "required: Title of the note",
"type": "string"
}
},
"required": [
"title",
"content"
],
"type": "object"
}