action drchrono_comm_logs_list { label: "comm_logs_list" description: "Retrieve or search communicatioin (phone call) logs" provider: drchrono method: GET path: "/api/comm_logs" encoding: json input: { type: "object" properties: { cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } patient: { type: "integer" } since: { type: "string" } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { type: "object" required: ["patient", "doctor"] 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }