get_project_note
Retrieve specific project notes by providing project ID and note ID to access detailed project documentation and updates.
Instructions
Get a specific project note by project ID and note ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
noteId | Yes | The note ID to retrieve | |
projectId | Yes | The project ID |
Input Schema (JSON Schema)
{
"properties": {
"noteId": {
"description": "The note ID to retrieve",
"type": "number"
},
"projectId": {
"description": "The project ID",
"type": "number"
}
},
"required": [
"projectId",
"noteId"
],
"type": "object"
}