action drchrono_claim_billing_notes_read { label: "claim_billing_notes_read" description: "Retrieve an existing billing note" provider: drchrono method: GET path: "/api/claim_billing_notes/{id}" encoding: json input: { type: "object" properties: { appointment: { type: "integer" } doctor: { type: "integer" } id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" required: ["appointment"] properties: { appointment: { type: "integer" } created_at: { type: "string" } created_by: { type: "string" description: "ID of `/users` when created the note" } id: { type: "integer" } text: { type: "string" } } } }