action twinehealth_fetch_patient { label: "Get a patient" description: "Gets a patient record by id." provider: twinehealth method: GET path: "/patient/{id}" encoding: json input: { type: "object" properties: { id: { type: "string" } } required: ["id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }