action drchrono_comm_logs_read { label: "comm_logs_read" description: "Retrieve an existing communication (phone call) logs" provider: drchrono method: GET path: "/api/comm_logs/{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"] properties: { appointment: { type: "integer" description: "Appointment related with the phone call log" } archived: { type: "boolean" description: "If this phone call log is archived or not" } author: { type: "string" description: "Author of post." } cash_charged: { type: "number" description: "Amount of cash needs to be charged" } created_at: { type: "string" } doctor: { type: "integer" } duration: { type: "integer" description: "Duration of the phone call" } id: { type: "integer" } message: { type: "string" description: "Additional message for the phone call" } patient: { type: "integer" } scheduled_time: { type: "string" description: "Date of phone call, if `appointment` is set, this field will be set as the `scheduled_time` of that appointment" } title: { type: "string" description: "Title of this log" } type: { type: "string" description: "Type of phone call log" } updated_at: { type: "string" } } } }