list_team_notes
Retrieve all notes within a specified team to manage and organize collaborative content efficiently using the HackMD API.
Instructions
List all notes in a team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamPath | Yes | Team path |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"teamPath": {
"description": "Team path",
"type": "string"
}
},
"required": [
"teamPath"
],
"type": "object"
}