action drchrono_task_notes_read { label: "task_notes_read" description: "Retrieve an existing task note" provider: drchrono method: GET path: "/api/task_notes/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } since: { type: "string" } task: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["task", "text"] properties: { archived: { type: "boolean" description: "If the task note is archived or not" } created_at: { type: "string" } created_by: { type: "string" description: "ID of the `/api/users` who created the note" } id: { type: "integer" } task: { type: "integer" description: "ID of task this note is related with" } text: { type: "string" description: "Content of the task note" } updated_at: { type: "string" } } } }