action drchrono_claim_billing_notes_list { label: "claim_billing_notes_list" description: "Retrieve or search billing notes" provider: drchrono method: GET path: "/api/claim_billing_notes" encoding: json input: { type: "object" properties: { appointment: { type: "integer" } cursor: { type: "string" description: "The pagination cursor value." } doctor: { type: "integer" } page_size: { type: "integer" description: "Number of results to return per page." } } additionalProperties: false } output: { type: "object" description: "Paginated Result" properties: { data: { type: "array" description: "result data" items: { 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" } } } } next: { type: "string" description: "Next Paginated page" } previous: { type: "string" description: "Previous paginated page" } } } }