action drchrono_amendments_read { label: "amendments_read" description: "Retrieve an existing patient amendment, you can only interact with amendments created by your API application" provider: drchrono method: GET path: "/api/amendments/{id}" encoding: json input: { type: "object" properties: { appointment: { type: "integer" } doctor: { type: "integer" } id: { type: "string" } patient: { type: "integer" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["amendment_file", "amendment_name", "doctor", "patient"] properties: { amendment_file: { type: "string" description: "A PDF file containing the amended information for the patient's record" } amendment_name: { type: "string" } appointment: { type: "integer" description: "ID of the appointment to which the amendment applies, if any. If present, the `amendment_file` will be appended to the clinical note for this appointment." } comments: { type: "string" } doctor: { type: "integer" description: "ID of the doctor who owns the amendment" } id: { type: "integer" } patient: { type: "integer" description: "ID of the patient to whom the amendment applies" } } } }