action drchrono_patient_messages_read { label: "patient_messages_read" provider: drchrono method: GET path: "/api/patient_messages/{id}" encoding: json input: { type: "object" properties: { doctor: { type: "integer" } id: { type: "string" } patient: { type: "integer" } since: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["doctor", "patient", "subject"] properties: { attachments: { type: "array" items: { type: "object" properties: { attachment: { type: "string" } created_at: { type: "string" } doctor: { type: "integer" } updated_at: { type: "string" } } } } body: { type: "string" } created_at: { type: "string" } doctor: { type: "integer" } id: { type: "integer" } message: { type: "string" } patient: { type: "integer" } subject: { type: "string" } updated_at: { type: "string" } } } }