action drchrono_task_notes_list { label: "task_notes_list" description: "Retrieve or search task notes" provider: drchrono method: GET path: "/api/task_notes" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } page_size: { type: "integer" description: "Number of results to return per page." } since: { type: "string" } task: { type: "integer" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }