action drchrono_claim_billing_notes_create { label: "claim_billing_notes_create" description: "Create a new billing note" provider: drchrono method: POST path: "/api/claim_billing_notes" encoding: json input: { type: "object" properties: { appointment: { type: "integer" } doctor: { type: "integer" } } 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" } } } }