create_team_note
Generate and manage collaborative notes within a team on HackMD by specifying title, content, permissions, and custom permalink.
Instructions
Create a new note in a team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
payload | Yes | Create note options | |
teamPath | Yes | Team path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"payload": {
"additionalProperties": false,
"description": "Create note options",
"properties": {
"commentPermission": {
"description": "Comment permission",
"enum": [
"disabled",
"forbidden",
"owners",
"signed_in_users",
"everyone"
],
"type": "string"
},
"content": {
"description": "Note content",
"type": "string"
},
"permalink": {
"description": "Custom permalink",
"type": "string"
},
"readPermission": {
"description": "Read permission",
"enum": [
"owner",
"signed_in",
"guest"
],
"type": "string"
},
"title": {
"description": "Note title",
"type": "string"
},
"writePermission": {
"description": "Write permission",
"enum": [
"owner",
"signed_in",
"guest"
],
"type": "string"
}
},
"type": "object"
},
"teamPath": {
"description": "Team path",
"type": "string"
}
},
"required": [
"teamPath",
"payload"
],
"type": "object"
}